-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsetup.py
More file actions
24 lines (23 loc) · 719 Bytes
/
setup.py
File metadata and controls
24 lines (23 loc) · 719 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup, find_packages
setup(
name="pyisolib",
url="https://github.com/GwnDaan/python-isobus-library",
version="1.0.0",
packages=find_packages(exclude=['docs', 'examples']),
author="Daan Steenbergen",
description="ISOBUS stack implementation",
keywords="ISOBUS ISO-11783",
# license="MIT",
# platforms=["any"],
# classifiers=[
# "License :: OSI Approved :: MIT License",
# "Operating System :: OS Independent",
# "Programming Language :: Python :: 3",
# "Intended Audience :: Developers",
# "Topic :: Scientific/Engineering"
# ],
install_requires=[
"can-j1939>=2.0.4",
"pillow>=9.0.0"
],
)