toxygen_wrapper/pyproject.toml

43 lines
1.3 KiB
TOML
Raw Permalink Normal View History

2024-02-02 03:14:37 +00:00
[project]
2024-02-05 13:11:36 +00:00
name = "toxygen_wrapper"
2023-12-15 13:25:36 +00:00
description = "A Python3 ctypes wrapping of c-toxcore into Python."
2024-02-02 03:14:37 +00:00
authors = [{ name = "Ingvar", email = "Ingvar@gitgub.com" } ]
2024-02-17 20:33:51 +00:00
requires-python = ">3.7"
2024-02-02 03:14:37 +00:00
keywords = ["tox", "python3", "ctypes"]
classifiers = [
"License :: OSI Approved",
"Operating System :: POSIX :: BSD :: FreeBSD",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
]
dynamic = ["version", "readme", ] # cannot be dynamic ['license']
[project.scripts]
2024-02-05 13:11:36 +00:00
toxygen_wrapper_tests = "toxygen_wrapper.tests.tests_wrapper:main"
toxygen_echo = "toxygen_wrapper.toxygen_echo:main"
2024-02-02 03:14:37 +00:00
[tool.setuptools.dynamic]
2024-02-05 13:11:36 +00:00
version = {attr = "toxygen_wrapper.__version__"}
2024-02-02 03:14:37 +00:00
readme = {file = ["README.md"]}
2023-12-15 13:25:36 +00:00
2024-02-02 03:14:37 +00:00
[project.license]
file = "LICENSE.md"
[project.urls]
repository = "https://git.plastiras.org/emdee/toxygen_wrapper"
2023-12-15 13:25:36 +00:00
[build-system]
2024-02-24 14:36:08 +00:00
requires = ["setuptools >= 61.0"]
2024-01-13 15:59:22 +00:00
build-backend = "setuptools.build_meta"
2024-02-02 03:14:37 +00:00
[tool.setuptools]
2024-02-05 13:11:36 +00:00
packages = ["toxygen_wrapper", "toxygen_wrapper.tests"]
2023-12-15 13:25:36 +00:00