-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
52 lines (48 loc) · 1.7 KB
/
setup.py
File metadata and controls
52 lines (48 loc) · 1.7 KB
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
40
41
42
43
44
45
46
47
48
49
50
51
52
# This file is part of the python-can-usbtingo project.
#
# Copyright(c) 2023-2024 Thomas Fischl (https://www.fischl.de)
#
# python-can-usbtingo is free software: you can redistribute it and/or modify
# it under the terms of the GNU LESSER GENERAL PUBLIC LICENSE as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# python-can-usbtingo is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU LESSER GENERAL PUBLIC LICENSE for more details.
#
# You should have received a copy of the GNU LESSER GENERAL PUBLIC LICENSE
# along with python-can-usbtingo. If not, see <http://www.gnu.org/licenses/>
import pathlib
from setuptools import setup
# The directory containing this file
HERE = pathlib.Path(__file__).parent
# The text of the README file
README = (HERE / "README.md").read_text()
setup(
name="python-can-usbtingo",
version="1.0.2",
author="Thomas Fischl",
author_email="tfischl@gmx.de",
description="Python-can USBtingo",
long_description=README,
long_description_content_type="text/markdown",
url="https://github.com/EmbedME/python-can-usbtingo",
py_modules = ["usbtingobus"],
python_requires=">=3.8",
install_requires=[
"python-can",
"libusb1"
],
entry_points = {
'can.interface': [
'usbtingo = usbtingobus:USBtingoBus'
]
},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
"Operating System :: OS Independent",
]
)