|
8 | 8 | long_description = f.read() |
9 | 9 |
|
10 | 10 | setup( |
11 | | - name = 'udsoncan', |
12 | | - packages = find_packages(exclude=['test']), |
13 | | - package_data={ |
14 | | - '': ['*.conf'], |
15 | | - }, |
16 | | - version = '1.16', |
17 | | - description = 'Implementation of the Unified Diagnostic Service (UDS) protocol (ISO-14229) used in the automotive industry.', |
18 | | - long_description=long_description, |
19 | | - author = 'Pier-Yves Lessard', |
20 | | - author_email = 'py.lessard@gmail.com', |
21 | | - license='MIT', |
22 | | - url = 'https://github.com/pylessard/python-udsoncan', |
23 | | - download_url = 'https://github.com/pylessard/python-udsoncan/archive/v1.16.tar.gz', |
24 | | - keywords = ['uds', '14229', 'iso-14229', 'diagnostic', 'automotive'], |
25 | | - python_requires='>=3.0', |
26 | | - classifiers = [ |
| 11 | + name='udsoncan', |
| 12 | + packages=find_packages(exclude=['test']), |
| 13 | + package_data={ |
| 14 | + '': ['*.conf'], |
| 15 | + }, |
| 16 | + version='1.17', |
| 17 | + description='Implementation of the Unified Diagnostic Service (UDS) protocol (ISO-14229) used in the automotive industry.', |
| 18 | + long_description=long_description, |
| 19 | + author='Pier-Yves Lessard', |
| 20 | + author_email='py.lessard@gmail.com', |
| 21 | + license='MIT', |
| 22 | + url='https://github.com/pylessard/python-udsoncan', |
| 23 | + download_url='https://github.com/pylessard/python-udsoncan/archive/v1.17.tar.gz', |
| 24 | + keywords=['uds', '14229', 'iso-14229', 'diagnostic', 'automotive'], |
| 25 | + python_requires='>=3.0', |
| 26 | + classifiers=[ |
27 | 27 | "Programming Language :: Python", |
28 | 28 | "Programming Language :: Python :: 3", |
29 | 29 | "Development Status :: 4 - Beta", |
30 | 30 | "Operating System :: POSIX :: Linux", |
31 | 31 | "Intended Audience :: Developers", |
32 | 32 | "License :: OSI Approved :: MIT License", |
33 | 33 | "Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator", |
34 | | - ], |
| 34 | + ], |
35 | 35 | ) |
0 commit comments