-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
34 lines (28 loc) · 709 Bytes
/
setup.py
File metadata and controls
34 lines (28 loc) · 709 Bytes
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
from setuptools import setup, find_packages
setup(
name="procyclist",
version="1",
packages=find_packages(),
install_requires=[
'matplotlib==1.5.3',
'pandas==0.19.0',
'scipy==0.18.1',
'tensorflow==0.12.1',
],
extras_require={
'GPU': ['tensorflow-gpu']
},
# Include config and parameter name files
package_data={
'procyclist': ['config/*.cfg', 'config/*.csv'],
},
entry_points={
'console_scripts': [
'procyclist_train = procyclist.train:main'
]
},
author="Agrin Hilmkil",
license="MIT",
keywords="cycling",
url="https://github.com/agrinh/procyclist_performance"
)