-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathsetup.py
39 lines (38 loc) · 1.44 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
38
39
from distutils.core import setup
import setuptools
setup(
name="RP1210",
packages=setuptools.find_packages(),
version="1.0.0",
license="MIT",
description="A Python32 implementation of the RP1210C standard.",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
author="Darius Fieschko",
author_email="[email protected]",
url="https://github.com/dfieschko/RP1210",
keywords=["RP1210", "RP1210C", "J1939", "CAN", "UDS"],
install_requires=["python-can~=4.3.1"],
classifiers=[
"Development Status :: 5 - Production/Stable", # "3 - Alpha", "4 - Beta" or "5 - Production/Stable"
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: Microsoft :: Windows",
],
project_urls={
"Wiki": "https://github.com/dfieschko/RP1210/wiki",
"Issues": "https://github.com/dfieschko/RP1210/issues",
"Discussions": "https://github.com/dfieschko/RP1210/discussions",
},
python_requires=">=3.9",
entry_points={
"can.interface": [
"rp1210=RP1210.pyrp1210bridge:PyRP1210Bridge",
]
},
)