-
Notifications
You must be signed in to change notification settings - Fork 55
/
Copy pathsetup.py
41 lines (34 loc) · 1.23 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
#!/usr/bin/env python
__author__ = "Richard Clubb"
__copyrights__ = "Copyright 2018, the python-uds project"
__credits__ = ["Richard Clubb"]
__license__ = "MIT"
__maintainer__ = "Richard Clubb"
__email__ = "richard.clubb@embeduk.com"
__status__ = "Development"
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
# Needed to silence warnings (and to be a worthwhile package)
name='python-uds',
url='https://github.com/richClubb/python-uds',
author='Richard Clubb',
author_email='richard.clubb@embeduk.com',
# Needed to actually package something
packages=find_packages(exclude=["test", "test.*"]),
# Needed for dependencies
install_requires=['python-can>=3.0.0', 'python-lin>=0.1.0'],
# *strongly* suggested for sharing
version='1.1.0',
# The license can be anything you like
license='MIT',
description='A library for interfacing with UDS using python',
# We will also need a readme eventually (there will be a warning)
# long_description=open('README.txt').read(),
classifiers=[
"Programming Language :: Python :: 3.6",
"Operating System :: OS Independent"
],
include_package_data=True
)