Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[project]
dynamic = [ "version" ]
name = "udsoncan"
description = "Implementation of the Unified Diagnostic Service (UDS) protocol (ISO-14229) used in the automotive industry."
readme = "README.rst"
authors = [
{ name = "Pier-Yves Lessard", email = "py.lessard@gmail.com" }
]
license = "MIT"
keywords = [
"uds",
"14229",
"iso-14229",
"diagnostic",
"automotive",
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator"
]
requires-python = ">= 3.7"

[project.optional-dependencies]
test = [
"mypy",
"coverage",
"aioisotp",
]
dev = [
"mypy",
"ipdb",
"autopep8",
"coverage",
]

[project.urls]
Homepage = "https://github.com/pylessard/python-udsoncan"
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

2 changes: 0 additions & 2 deletions setup.cfg

This file was deleted.

32 changes: 0 additions & 32 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
from setuptools import setup, find_packages
from codecs import open
from os import path
import sys

Expand All @@ -8,37 +7,6 @@
sys.path.insert(0, here)
import udsoncan

with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
long_description = f.read()

setup(
name='udsoncan',
packages=find_packages(exclude=["test", "test.*"], include=['udsoncan', "udsoncan.*"]),
package_data={
'': ['*.conf'],
'udsoncan' : ['py.typed']
},
extras_require={
'test': ['mypy', 'coverage'],
'dev': ['mypy', 'ipdb', 'autopep8', 'coverage']
},
version=udsoncan.__version__,
description='Implementation of the Unified Diagnostic Service (UDS) protocol (ISO-14229) used in the automotive industry.',
long_description=long_description,
author='Pier-Yves Lessard',
author_email='py.lessard@gmail.com',
license='MIT',
url='https://github.com/pylessard/python-udsoncan',
download_url=f'https://github.com/pylessard/python-udsoncan/archive/v{udsoncan.__version__}.tar.gz',
keywords=['uds', '14229', 'iso-14229', 'diagnostic', 'automotive'],
python_requires='>=3.7',
classifiers=[
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Development Status :: 4 - Beta",
"Operating System :: POSIX :: Linux",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
)