44 lines
1.3 KiB
TOML
44 lines
1.3 KiB
TOML
[project]
|
|
name = "tox_wrapper"
|
|
description = "A Python3 ctypesgen wrapping of c-toxcore into Python."
|
|
authors = [{ name = "Ingvar", email = "Ingvar@gitgub.com" } ]
|
|
requires-python = ">3.7"
|
|
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]
|
|
toxygen_wrapper_tests = "toxygen_wrapper.tests.tests_wrapper:main"
|
|
toxygen_echo = "toxygen_wrapper.toxygen_echo:main"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "toxygen_wrapper.__version__"}
|
|
readme = {file = ["README.md"]}
|
|
|
|
[project.license]
|
|
file = "LICENSE.md"
|
|
|
|
[project.urls]
|
|
repository = "https://git.plastiras.org/emdee/tox_wrapper"
|
|
|
|
[build-system]
|
|
# >= 61.0
|
|
requires = ["setuptools >= 61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools]
|
|
packages = ["toxygen_wrapper", "toxygen_wrapper.tests"]
|
|
|