|
| 1 | +[build-system] |
| 2 | +requires = ["setuptools>=68", "wheel"] |
| 3 | +build-backend = "setuptools.build_meta" |
| 4 | + |
| 5 | +[project] |
| 6 | +name = "dlms-cosem" |
| 7 | +version = "2026.1.0" |
| 8 | +description = "A Python library for DLMS/COSEM" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.9" |
| 11 | +license = { text = "Business Source License 1.1" } |
| 12 | +authors = [ |
| 13 | + { name = "Henrik Palmlund Wahlgren @ Palmlund Wahlgren Innovative Technology AB", email = "henrik@pwit.se" }, |
| 14 | +] |
| 15 | +maintainers = [ |
| 16 | + { name = "Henrik Palmlund Wahlgren @ Palmlund Wahlgren Innovative Technology AB", email = "henrik@pwit.se" }, |
| 17 | +] |
| 18 | +keywords = ["AMR", "Metering", "smart meters", "MDM", "dlms", "cosem"] |
| 19 | +classifiers = [ |
| 20 | + "Intended Audience :: Developers", |
| 21 | + "Natural Language :: English", |
| 22 | + "License :: Other/Proprietary License", |
| 23 | + "Operating System :: OS Independent", |
| 24 | + "Programming Language :: Python :: 3", |
| 25 | + "Programming Language :: Python :: 3 :: Only", |
| 26 | + "Programming Language :: Python :: 3.9", |
| 27 | + "Programming Language :: Python :: 3.10", |
| 28 | + "Programming Language :: Python :: 3.11", |
| 29 | + "Programming Language :: Python :: 3.12", |
| 30 | + "Programming Language :: Python :: 3.13", |
| 31 | + "Programming Language :: Python :: Implementation :: CPython", |
| 32 | + "Topic :: Software Development :: Libraries :: Python Modules", |
| 33 | + "Topic :: Communications", |
| 34 | +] |
| 35 | +dependencies = [ |
| 36 | + "attrs>=22.2.0", |
| 37 | + "pyserial>=3.5", |
| 38 | + "cryptography>=35.0.0", |
| 39 | + "asn1crypto>=1.4.0", |
| 40 | + "python-dateutil>=2.8.1", |
| 41 | + "typing-extensions>=3.10", |
| 42 | + "structlog>=22.1.0", |
| 43 | +] |
| 44 | + |
| 45 | +[project.optional-dependencies] |
| 46 | +docs = ["mkdocs", "mkdocs-material"] |
| 47 | +test = ["pytest", "pytest-cov", "pytest-sugar"] |
| 48 | +dev = [ |
| 49 | + "pre-commit", |
| 50 | + "mkdocs", |
| 51 | + "mkdocs-material", |
| 52 | + "pytest", |
| 53 | + "pytest-cov", |
| 54 | + "pytest-sugar", |
| 55 | +] |
| 56 | + |
| 57 | +[project.urls] |
| 58 | +Documentation = "https://www.dlms.dev/" |
| 59 | +"Bug Tracker" = "https://github.com/u9n/dlms-cosem/issues" |
| 60 | +"Source Code" = "https://github.com/u9n/dlms-cosem" |
| 61 | + |
| 62 | +[tool.setuptools.packages.find] |
| 63 | +exclude = ["tests", "tests.*"] |
| 64 | + |
1 | 65 | [tool.black] |
2 | 66 | target-version = ["py39"] |
3 | 67 | include = '\.pyi?$' |
|
0 commit comments