forked from RowsberryPi/rowsberrypi
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
59 lines (40 loc) · 1.02 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
47
48
49
50
51
52
53
54
55
56
57
58
59
from setuptools import setup, find_packages
import re
def readme():
with open('README.md') as f:
return f.read()
setup(name='pyrow',
version=re.search(
'^__version__\s*=\s*"(.*)"',
open('pyrow/pyrow.py').read(),
re.M
).group(1),
description='The pyrow library to connect to your Concept2 rower',
long_description=readme(),
url='http://rowsandall.com',
author='UVD',
author_email='[email protected]',
license='MIT',
# packages=['pyrow'],
packages = find_packages(),
keywords = 'rowing ergometer concept2',
install_requires=[
'pyusb',
'yamjam',
],
zip_safe=False,
include_package_data=True,
# relative to the pyrow directory
package_data={
},
entry_points = {
"console_scripts": [
'strokelog = pyrow.strokelog:main',
'workoutlogger = pyrow.workoutlogger:main',
]
},
scripts=[
'pyrow/strokelog.py',
'pyrow/workoutlogger.py',
]
)