forked from eclipse-kiso-testing/kiso-testing-python-uds
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (41 loc) · 1.75 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
#!/usr/bin/env python
__author__ = "Richard Clubb, KAYSER Damien"
__copyrights__ = "Copyright 2018, the python-uds project"
__credits__ = ["Richard Clubb"]
__license__ = "MIT"
__maintainer__ = "KAYSER Damien"
__email__ = "[email protected]"
__status__ = "Development"
from setuptools import find_packages, setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
# Needed to silence warnings (and to be a worthwhile package)
name="pykiso-python-uds",
url="https://github.com/eclipse/kiso-testing-python-uds",
author="Richard Clubb, KAYSER Damien, Sebastian Clerson",
# Needed to actually package something
packages=find_packages(exclude=["test", "test.*"]),
# Needed for dependencies
install_requires=["python-can>=4.0.0"],
tests_require=["pytest", "pytest-mock"],
extras_require={"test": ["pytest", "pytest-mock"]},
# *strongly* suggested for sharing
version="3.1.0",
# The license can be anything you like
license="MIT",
description="Please use python-uds instead, this is a refactored version with breaking changes, only for pykiso",
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Operating System :: OS Independent",
],
include_package_data=True,
)