-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 974 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
30
31
32
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
setup(name='pyWoodway',
version='0.2.4',
url='https://github.com/Munroe-Meyer-Institute-VR-Laboratory/pyWoodway',
author='Walker Arce',
author_email='[email protected]',
description='Communicate with your Woodway treadmill in your Python scripts.',
keywords='Woodway treadmill biomechanics',
long_description=readme,
classifiers=[
'License :: OSI Approved :: MIT License',
'Programming Language :: Python :: 3.8'
],
long_description_content_type="text/markdown",
# packages=find_packages(),
zip_safe=False,
license='MIT',
include_package_data=True,
packages=['pywoodway'],
install_requires=[
'pyserial'
],
)
# python setup.py bdist_wheel
# pip3 install pdoc3
# pdoc --html --output-dir docs pywoodway
# https://ftdichip.com/drivers/