-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathsetup.py
More file actions
51 lines (42 loc) · 1.17 KB
/
Copy pathsetup.py
File metadata and controls
51 lines (42 loc) · 1.17 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
from setuptools import setup, find_packages
exec(open("pailab/version.py").read())
def readme():
with open('README.rst') as f:
return f.read()
install_requirements = [
"numpy>=1.13",
"plotly>=3.5.0",
"h5py>=2.7",
"pandas>=0.20",
"nbformat",
"deepdiff",
]
# Extra dependencies for externals
sklearn = [
"sklearn",
]
tensorflow = [
"tensorflow",
]
all_dependencies = sklearn + tensorflow
setup(name='pailab',
version=__version__,
description='pailab the integrated machine learning workbench',
long_description=readme(),
classifiers=[
'Development Status :: 4 - Beta',
],
keywords='platform ml version-control neural-network ml-workbench ai big data',
url='https://github.com/pailabteam/pailab',
author='pailabteam',
author_email='pailab@rivacon.com',
license='Apache 2.0',
packages=find_packages(exclude=['doc', 'examples', 'tests']),
install_requires=install_requirements,
extras_require={
'all': all_dependencies,
'sklearn': sklearn,
'tensorflow': tensorflow,
},
include_package_data=True,
zip_safe=False)