forked from eduardomtz/magicloop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
54 lines (41 loc) · 1018 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
from setuptools import setup, find_packages
from os import path
"""
magicloop-pipeline: Pipeline magicloop
"""
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.md'), encoding='utf-8') as f:
long_description = f.read()
setup(
name="magicloop",
version='0.0.1',
description='Pipeline magicloop',
long_description=long_description,
url='https://github.com/nanounanue/pipeline-template',
author='Adolfo De Unánue',
author_email='[email protected]',
license='GPL v3',
packages=find_packages(),
test_suite='tests',
install_requires=[
'numpy',
'pyyaml',
'pandas',
'scikit-learn',
'sqlalchemy',
'datetime',
'scipy',
'luigi',
'Click',
'python-dotenv'
],
extra_require={
'test': ['mock']
},
entry_points = {
'console_scripts' : [
'magicloop = magicloop.scripts.cli:main',
]
},
zip_safe=False
)