-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
46 lines (40 loc) · 1.06 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
42
43
44
45
46
"""Installation script."""
from os import path
from io import open
from setuptools import find_packages, setup
HERE = path.abspath(path.dirname(__file__))
def readme():
with open(path.join(HERE, 'README.md'), encoding='utf-8') as f:
return f.read().strip()
install_requires = [
"sregistry[all]==0.0.69"
]
tests_require = [
'pytest>=3.0.0'
]
setup(
name='flow',
version=0.1,
description='Experiment pipeline',
long_description=readme(),
url='https://github.com/bouthilx/flow.git',
author='Xavier Bouthillier',
license='MIT',
packages=find_packages(),
include_package_data=True,
install_requires=install_requires,
tests_require=tests_require,
extras_require=dict(test=tests_require),
scripts=[
'bin/flow-deploy',
'bin/flow-execute'
],
entry_points={
'console_scripts': [
'flow-submit = flow.bin.submit:main',
'flow-compare = flow.bin.compare:main',
'flow-analyze = flow.bin.analyze:main'
]
},
zip_safe=False
)