-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (28 loc) · 888 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
from fdep import __VERSION__
from setuptools import setup
setup(
name="fdep",
packages=[
'fdep', 'fdep.backends', 'fdep.commands',
'fdep.interfaces', 'fdep.servers',
'fdep.servers.integrations'
],
version=__VERSION__,
author="Checkr",
author_email="[email protected]",
url="http://github.com/checkr/fdep",
license="MIT LICENSE",
description="fdep is a framework-agnostic, transport-agnostic, extensible command line tool to shape workflows between machine learning experts and others.",
long_description="For more details, go to http://github.com/checkr/fdep",
entry_points={
'console_scripts': ['fdep=fdep.__main__:main']
},
install_requires=[
'PyYAML>=3.12',
'boto3>=1.4.4',
'requests>=2.11.1',
'colorama>=0.3.7',
'tqdm>=4.8.4',
'json-rpc>=1.10.3'
]
)