-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (47 loc) · 1.65 KB
/
setup.py
File metadata and controls
51 lines (47 loc) · 1.65 KB
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
import os
from setuptools import setup
os.chdir(os.path.abspath(os.path.dirname(__file__)))
req = [
'aio-pika',
'elasticsearch~=7.0',
'lazo-index-service==0.7.0',
'opentelemetry-api',
'opentelemetry-distro',
'opentelemetry-instrumentation-elasticsearch',
'opentelemetry-instrumentation-grpc',
'prometheus_client',
'xlrd',
'defusedxml',
'datamart-core',
'datamart-materialize',
'datamart-profiler',
]
setup(name='datamart-profiler-service',
version='0.0',
py_modules=['profiler'],
entry_points={
'console_scripts': [
'profiler = profiler:main']},
install_requires=req,
description="Data profiling service of Auctus",
author="Remi Rampin",
author_email='remi.rampin@nyu.edu',
maintainer="Remi Rampin",
maintainer_email='remi.rampin@nyu.edu',
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="Data profiling service of Auctus",
license='Apache-2.0',
keywords=['auctus', 'datamart'],
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3 :: Only',
'Topic :: Scientific/Engineering :: Information Analysis'])