-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
46 lines (42 loc) · 1.42 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
import io
import os
from setuptools import setup
os.chdir(os.path.abspath(os.path.dirname(__file__)))
req = [
'numpy',
'opentelemetry-api',
'pandas',
'prometheus_client',
'python-dateutil',
'scikit-learn',
'regex',
'requests',
'datamart-geo>=0.2.3,<0.4',
]
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='datamart-profiler',
version='0.11',
packages=['datamart_profiler'],
install_requires=req,
description="Data profiling library for Auctus",
author="Remi Rampin",
author_email='[email protected]',
maintainer="Remi Rampin",
maintainer_email='[email protected]',
url='https://gitlab.com/ViDA-NYU/auctus/auctus',
project_urls={
'Homepage': 'https://gitlab.com/ViDA-NYU/auctus/auctus',
'Source': 'https://gitlab.com/ViDA-NYU/auctus/auctus',
'Tracker': 'https://gitlab.com/ViDA-NYU/auctus/auctus/-/issues',
},
long_description=description,
license='Apache-2.0',
keywords=['auctus', 'datamart'],
classifiers=[
'Development Status :: 4 - Beta',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis'])