-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathsetup.py
37 lines (34 loc) · 1.09 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
from setuptools import setup, find_packages
exec(open("can_remote/version.py").read())
description = open("README.rst").read()
setup(
name="python-can-remote",
url="https://github.com/christiansandberg/python-can-remote",
version=__version__,
packages=find_packages(),
author="Christian Sandberg",
author_email="[email protected]",
description="CAN over network bridge for Python",
keywords="CAN TCP websocket",
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"
],
package_data={
"can_remote": ["web/index.html", "web/assets/*"]
},
entry_points={
"can.interface": [
"remote=can_remote.client:RemoteBus",
]
},
install_requires=["python-can>=3.0.0"]
)