-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
37 lines (31 loc) · 876 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
33
34
35
36
37
"""Config for Pypi."""
from setuptools import setup, find_packages
VERSION = "0.2.2"
DESCRIPTION = "Python module for data sanity check."
setup(
name='sanity_check',
author='Matteo Romanello, Maud Ehrmann',
author_email='[email protected], [email protected]',
url='https://github.com/impresso/impresso-data-sanitycheck',
version=VERSION,
packages=find_packages(),
long_description=DESCRIPTION,
python_requires='>=3.6',
install_requires=[
'docopt',
'humanize',
'aenum',
'requests',
'tqdm',
'distributed',
'dask[complete]',
'seaborn',
'tabulate',
'dask-k8',
'impresso-pycommons'
'impresso-text-importer'
],
dependency_links=[
'https://github.com/impresso/impresso-master-db/tarball/master#egg=package-1.0'
]
)