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