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
1 change: 0 additions & 1 deletion documentation_requirements.txt

This file was deleted.

26 changes: 25 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,3 +1,27 @@
[build-system]
requires = ["setuptools >= 40.6.0", "wheel"]
build-backend = "setuptools.build_meta"
build-backend = "setuptools.build_meta"

[project]
name = "doipclient"
version = "1.1.8"
description = "A Diagnostic over IP (DoIP) client implementing ISO-13400-2."
readme = "README.rst"
authors = [{ name = "Jacob Schaer"}]
license = "MIT"
license-files = [ "LICENSE" ]
keywords = [ "uds", "14229", "iso-14229", "diagnostic", "automotive", "13400", "iso-13400", "doip", ]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
]
requires-python = ">= 3.6"
dependencies = [
"udsoncan"
]


[project.urls]
Homepage = "https://github.com/jacobschaer/python-doipclient"
Documentation = "https://python-doipclient.readthedocs.io/en/latest/"
32 changes: 1 addition & 31 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,34 +2,4 @@

import setuptools

with open("README.rst", "r", encoding="utf-8") as fh:
long_description = fh.read()

setuptools.setup(
name="doipclient",
version="1.1.8",
description="A Diagnostic over IP (DoIP) client implementing ISO-13400-2.",
long_description=long_description,
long_description_content_type="text/x-rst",
author="Jacob Schaer",
url="https://github.com/jacobschaer/python-doipclient",
packages=["doipclient"],
package_data={"doipclient": ["py.typed"]},
keywords=[
"uds",
"14229",
"iso-14229",
"diagnostic",
"automotive",
"13400",
"iso-13400",
"doip",
],
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering :: Interface Engine/Protocol Translator",
],
python_requires=">=3.6",
)
setuptools.setup()