-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathsetup.py
35 lines (32 loc) · 1.25 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
import io
import os
from setuptools import find_packages, setup
# Import the README and use it as the long-description.
root_dir = os.path.abspath(os.path.dirname(__file__))
with io.open(os.path.join(root_dir, "README.md"), encoding="utf-8") as f:
long_description = "\n" + f.read()
setup(
name="canalystii",
version="0.1",
description="Python userspace driver for Canalyst-II USB CAN analyzer.",
long_description=long_description,
long_description_content_type="text/markdown",
author="Angus Gratton",
author_email="[email protected]",
url="https://github.com/projectgus/python-canalystii",
packages=find_packages(exclude=["tests"]),
install_requires=["pyusb>=1.2.0"],
include_package_data=True,
license="BSD",
classifiers=[
"License :: OSI Approved :: BSD License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
],
)