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
6 changes: 6 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,12 @@ var/
.installed.cfg
*.egg

# uv
uv.lock
.python-version

.vscode/

# PyInstaller
# Usually these files are written by a python script from a template
# before PyInstaller builds the exe, so as to inject date/other infos into it.
Expand Down
9 changes: 0 additions & 9 deletions dev_requirements.txt

This file was deleted.

48 changes: 48 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
[project]
name = "umodbus"
version = "1.0.4"
description = "Implementation of the Modbus protocol in pure Python"
readme = "README.rst"
license="MPL-2.0"
requires-python = ">=3.5,<3.10"
dependencies = [
"pyserial~=3.4",
]
classifiers=[
"Development Status :: 6 - Mature",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Topic :: Software Development :: Embedded Systems",
]
authors= [{name="Auke Willem Oosterhoff", email="[email protected]" }]
[project.urls]
homepage = "https://github.com/AdvancedClimateSystems/uModbus"
source = "https://github.com/AdvancedClimateSystems/uModbus"
issues = "https://github.com/AdvancedClimateSystems/uModbus/issues"
documentation = "https://umodbus.readthedocs.io/en/latest/"

[dependency-groups]
dev = [
"pytest==5.3.1",
"pytest-cov==2.8.1",
"sphinx==2.2.2",
"sphinx-rtd-theme==0.4.3",
]

[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"

[tool.setuptools]
packages=[
"umodbus",
"umodbus.client",
"umodbus.client.serial",
"umodbus.server",
"umodbus.server.serial",
]
1 change: 0 additions & 1 deletion requirements.txt

This file was deleted.

5 changes: 0 additions & 5 deletions setup.cfg

This file was deleted.

44 changes: 0 additions & 44 deletions setup.py

This file was deleted.