-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
37 lines (37 loc) · 1.11 KB
/
setup.py
File metadata and controls
37 lines (37 loc) · 1.11 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
from setuptools import setup, find_packages
setup(
name='mlpipe',
version='0.1.16',
author='Longbin Chen',
author_email='lbchen@gmail.com',
packages=find_packages(exclude=['mlpipe.migrations', 'mlpipe.templatetags']),
package_data={'':['*.yaml','*.py']},
scripts=['bin/ml',],
license='LICENSE',
url='https://github.com/LongbinChen/mlpipe',
description='A toolkit to manage machine learning libraries.',
long_description=open('README.md').read(),
include_package_data=True,
install_requires=[
"astroid==1.6.1",
"backports.functools-lru-cache==1.5",
"configparser==3.5.0",
"Django==1.11.10",
"django-bootstrap-ui==0.5.1",
"django-bootstrap3==9.1.0",
"django-tag-parser==2.1",
"dominate==2.1.17",
"enum34==1.1.6",
"futures",
"isort==4.3.3",
"lazy-object-proxy==1.3.1",
"mccabe==0.6.1",
"pycodestyle==2.3.1",
"pytz==2018.3",
"PyYAML==3.12",
"singledispatch==3.4.0.3",
"six==1.11.0",
"termcolor==1.1.0",
"wrapt==1.10.11",
],
)