-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
41 lines (34 loc) · 1.2 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"
__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-lin',
url='https://github.com/richClubb/python-lin',
author='Richard Clubb',
# Needed to actually package something
packages=find_packages(exclude=["test", "test.*"]),
# Needed for dependencies
install_requires=[''],
# *strongly* suggested for sharing
version='0.1.1',
# The license can be anything you like
license='MIT',
description='A library for interfacing with LIN devices 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.7",
"Operating System :: OS Independent"
],
include_package_data=True
)