-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
54 lines (49 loc) · 1.97 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
# pyproject.toml: See https://packaging.python.org/en/latest/guides/writing-pyproject-toml/
# Testing: see https://docs.pytest.org/en/7.4.x/explanation/goodpractices.html
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
# [tool.setuptools.packages.find]
# exclude = ["tests"]
[tool.setuptools]
packages = ["openlcb", "canbus"]
[project]
name = "openlcb"
description = "A Python implementation of OpenLCB/LCC based on the LccTools app's Swift implementation as of January 2024."
readme = "README.md"
license = {file = "LICENSE"}
# - packaging.python.org recommends a classifier for license if
# well-known, but above is also specified since it has a copyright
# notice.
# List of classifiers: https://pypi.org/classifiers/
classifiers = [
"Development Status :: 1 - Planning",
"Topic :: System :: Hardware",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.8"
]
authors = [
{name = "Bob Jacobsen"},
]
maintainers = [
{name = "Bob Jacobsen"}
]
version = "0.1.2"
requires-python = ">= 3.8"
# dynamic = ["version"]
# ^ allows version to be overridden by a git tag using
# setuptools_scm, or by a __version__ Python attribute.
# See https://packaging.python.org/en/latest/guides/single-sourcing-package-version/#single-sourcing-the-version
# dependencies = [
# ]
[project.optional-dependencies]
gui = ["zeroconf"]
# ^ GUI uses zeroconf for a drop-down to select an TCP/IP device if any advertise an openlcb-can service.
[project.urls]
# List of names: https://packaging.python.org/en/latest/guides/writing-pyproject-toml/#urls
Repository = "https://github.com/bobjacobsen/python-openlcb"
Issues = "https://github.com/bobjacobsen/python-openlcb/issues"
# Changelog = "https://github.com/bobjacobsen/python-openlcb/blob/master/CHANGELOG.md"
# ^ TODO: Uncomment this if a changelog is added (& change url to match case).
# - For a common way to use markdown for it see: https://keepachangelog.com/en/1.1.0/