forked from christiansandberg/canopen
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
36 lines (32 loc) · 1.11 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 setuptools import setup, find_packages
exec(open('canopen/version.py').read())
description = open("README.rst").read()
# Change links to stable documentation
description = description.replace("/latest/", "/stable/")
setup(
name="canopen",
url="https://github.com/christiansandberg/canopen",
version=__version__,
packages=find_packages(),
author="Christian Sandberg",
author_email="[email protected]",
description="CANopen stack implementation",
keywords="CAN CANopen",
long_description=description,
license="MIT",
platforms=["any"],
classifiers=[
"Development Status :: 4 - Beta",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering"
],
install_requires=["python-can>=2.0.0", "canmatrix"],
include_package_data=True,
# Tests can be run using `python setup.py test`
test_suite="nose.collector",
tests_require=["nose"]
)