File: pyproject.toml

package info (click to toggle)
pyartnet 2.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 668 kB
  • sloc: python: 1,845; makefile: 5
file content (70 lines) | stat: -rw-r--r-- 1,569 bytes parent folder | download
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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[project]
name = "pyartnet"
version = "1.0.1"

description = "Python wrappers for the Art-Net protocol to send DMX over Ethernet"
keywords = ["DMX", "Art-Net", "ArtNet", "sACN", "E1.31", "KiNet"]
readme = "readme.md"
dependencies = [
    "typing-extensions"
]
requires-python = ">= 3.8"

authors = [
  {name = "spaceman_spiff"},
]
license = "GPL-3.0-or-later"


classifiers = [
    "Development Status :: 5 - Production/Stable",
    "Programming Language :: Python :: 3.8",
    "Programming Language :: Python :: 3.9",
    "Programming Language :: Python :: 3.10",
    "Programming Language :: Python :: 3.11",
    "Programming Language :: Python :: 3.12",
    "Programming Language :: Python :: 3.13",
    "Programming Language :: Python :: 3.14",
    "Programming Language :: Python :: 3 :: Only",
    "Operating System :: OS Independent",
]


[project.urls]
Documentation = 'https://pyartnet.readthedocs.io'
Repository = "https://github.com/spacemanspiff2007/PyArtNet'"
Issues = "https://github.com/spacemanspiff2007/PyArtNet/issues"


[dependency-groups]
docs = [
    "sphinx",
    "sphinx-autodoc-typehints",
    "sphinx_rtd_theme",
    "sphinx-exec-code",
    "pytest"    # needed for monkeypatch
]

tests = [
    "pytest",
    "pytest-asyncio",
]

dev = [
    {include-group = "tests"},
    {include-group = "docs"},
    "pre-commit",
    "ruff"
]


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


[tool.pytest.ini_options]
asyncio_mode = "auto"
addopts = "-p no:cacheprovider"
testpaths = ["tests"]
pythonpath = ["."]