-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathsetup.py
36 lines (32 loc) · 1.12 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
import setuptools
import versioneer
from pathlib import Path
# Extract information from the README file and embed it in the package.
readme_path = Path(__file__).absolute().parent / "README.md"
with open(readme_path, "r") as fh:
long_description = fh.read()
setuptools.setup(
author="Magnus Aagaard Sørensen",
author_email="mas@csselectronics.com",
classifiers=[
"License :: OSI Approved :: MIT License",
"Development Status :: 3 - Alpha",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
cmdclass=versioneer.get_cmdclass(),
description="Utilities to decode CAN log files",
install_requires=[
"numpy"
],
long_description=long_description,
long_description_content_type="text/markdown",
name="can_decoder",
packages=setuptools.find_packages(),
python_requires='>=3.5',
url="https://github.com/CSS-Electronics/can_decoder",
version=versioneer.get_version(),
)