-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
32 lines (30 loc) · 1.17 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
from setuptools import setup
setup(
# to be displayed on PyPI
name='klego',
version='0.98.2.7',
description='An easy-to-go, yet practical and powerful'
' python package for Lego NXT',
long_description='An easy-to-go'
' python package for Lego NXT control'
' built especially for popular Lego tasks'
' like line-following, bonus block hitting.'
' More feature with ML or DL might be included'
' in the future as well',
keywords='python lego nxt mindstorm easy lightweight hardware',
project_urls={
'Documentation': 'https://github.com/KivenChen/kLego',
'Source Code': 'https://github.com/KivenChen/kLego',
'More by Kiven': "https://github.com/Kivenchen",
},
author='Kiven',
author_email='sdckivenchen@gmail.com',
url='https://kivenchen,us',
packages=['klego'],
install_requires=['pyusb', 'nxt-python', 'numpy', 'scipy', 'configobj', 'matplotlib'],
dependency_links=[
'https://kivenchen.us/kiven-s-pybluez/PyBluez-0.22.1.tar.gz'],
zip_safe=False,
test_suite='nose.collector',
tests_require=['nose'],
)