forked from uArm-Developer/pyuarm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (31 loc) · 1.14 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
from distutils.util import convert_path
from setuptools import setup, find_packages
main_ns = {}
ver_path = convert_path('pyuarm/version.py')
with open(ver_path) as ver_file:
exec(ver_file.read(), main_ns)
version = main_ns['__version__']
long_description = open('README.rst').read()
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(name='pyuarm',
version=version,
author='Joey Song/Alex Tan',
packages=find_packages(),
entry_points={
'console_scripts': [
'uarm-firmware = pyuarm.tools.firmware_helper:main',
'uarm-calibrate = pyuarm.tools.calibrate:main',
'uarm-listport = pyuarm.tools.list_uarms:main',
'uarm-miniterm = pyuarm.tools.miniterm:main',
]
},
package_data={'pyuarm.tools': ['avrdude/*']},
include_package_data=True,
author_email='[email protected]',
url="https://github.com/uarm-developer/pyuarm",
keywords="pyuarm uarm4py uarmForPython uarm ufactory",
install_requires=requirements,
long_description=long_description,
description='A python library for uArm',
)