This repository has been archived by the owner on Apr 1, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·56 lines (54 loc) · 1.68 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
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
import setuptools
import canopen_monitor as cm
with open('README.md', 'r') as file:
long_description = file.read()
setuptools.setup(
name=cm.APP_NAME,
version=cm.APP_VERSION,
author=cm.APP_AUTHOR,
maintainer=cm.MAINTAINER_NAME,
maintainer_email=cm.MAINTAINER_EMAIL,
license=cm.APP_LICENSE,
description=cm.APP_DESCRIPTION,
long_description=long_description,
long_description_content_type='text/markdown',
url=cm.APP_URL,
project_urls={
'Documentation': 'https://canopen-monitor.readthedocs.io',
'Bug Tracking': 'https://github.com/oresat/CANopen-monitor/issues?q=is'
'%3Aopen+is%3Aissue+label%3Abug'
},
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
"Environment :: Console :: Curses",
"Topic :: Scientific/Engineering :: Information Analysis",
"Topic :: Software Development :: User Interfaces",
"Topic :: System :: Monitoring",
"Topic :: System :: Networking :: Monitoring :: Hardware Watchdog"
],
install_requires=[
"pyvit >= 0.2.1",
"psutil >= 5.8.0",
"python-dateutil >= 2.8.1"
],
extras_require={
"dev": [
"python-can",
"setuptools",
"wheel",
"flake8",
"twine",
"sphinx",
"sphinx_rtd_theme",
]
},
python_requires='>=3.9.0',
entry_points={
"console_scripts": [
f'{cm.APP_NAME} = canopen_monitor.__main__:main'
]
}
)