-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
41 lines (37 loc) · 1.34 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
import io
import os
from setuptools import setup
os.chdir(os.path.abspath(os.path.dirname(__file__)))
req = [
'pandas',
'numpy',
'datamart-materialize==0.11',
'datamart-profiler==0.11',
]
with io.open('README.rst', encoding='utf-8') as fp:
description = fp.read()
setup(name='datamart-augmentation',
version='0.10',
packages=['datamart_augmentation'],
install_requires=req,
description="Data augmentation functions 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'])