This repository has been archived by the owner on Feb 17, 2023. It is now read-only.
forked from great-expectations/great_expectations
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (47 loc) · 1.91 KB
/
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
import versioneer
# Parse requirements.txt
with open('requirements.txt') as f:
required = f.read().splitlines()
#try:
# import pypandoc
# long_description = pypandoc.convert_file('README.md', 'rst')
#except (IOError, ImportError):
long_description = 'Always know what to expect from your data. (See https://github.com/great-expectations/great_expectations for full description).'
config = {
'description': 'Always know what to expect from your data.',
'author': 'The Great Expectations Team',
'url': 'https://github.com/great-expectations/great_expectations',
'author_email': 'team@greatexpectations.io',
'version': versioneer.get_version(),
'cmdclass': versioneer.get_cmdclass(),
'install_requires': required,
'extras_require': {
'spark': ['pyspark>=2.3.2'],
'sqlalchemy': ['sqlalchemy>=1.2'],
'airflow': ['apache-airflow[s3]>=1.9.0', 'boto3>=1.7.3']
},
'packages': find_packages(exclude=['docs', 'tests', 'examples']),
'entry_points': {
'console_scripts': ['great_expectations=great_expectations.cli:main']
},
'name': 'great_expectations',
'long_description': long_description,
'license': 'Apache-2.0',
'keywords': 'data science testing pipeline data quality dataquality validation datavalidation',
'include_package_data': True,
'classifiers': [
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'Intended Audience :: Science/Research',
'Intended Audience :: Other Audience',
'Topic :: Scientific/Engineering',
'Topic :: Software Development',
'Topic :: Software Development :: Testing',
'License :: OSI Approved :: Apache Software License',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
]
}
setup(**config)