forked from move-coop/parsons
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (26 loc) · 935 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import os
from setuptools import find_packages
from distutils.core import setup
THIS_DIR = os.path.abspath(os.path.dirname(__file__))
def main():
with open(os.path.join(THIS_DIR, 'requirements.txt')) as reqs:
requirements = reqs.read().strip().split('\n')
setup(
name="parsons",
version='0.15.0',
author="The Movement Cooperative",
author_email="[email protected]",
url='https://github.com/movementcoop/parsons',
keywords=['PROGRESSIVE', 'API', 'ETL'],
packages=find_packages(),
install_requires=requirements,
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8'
]
)
if __name__ == "__main__":
main()