54 lines
1.5 KiB
TOML
54 lines
1.5 KiB
TOML
|
[project]
|
||
|
name = "toxygen"
|
||
|
description = "examples of using stem"
|
||
|
authors = [{ name = "emdee", email = "emdee@spm.plastiras.org" } ]
|
||
|
requires-python = ">=3.7"
|
||
|
keywords = ["stem", "python3", "tox"]
|
||
|
classifiers = [
|
||
|
# How mature is this project? Common values are
|
||
|
# 3 - Alpha
|
||
|
# 4 - Beta
|
||
|
# 5 - Production/Stable
|
||
|
"Development Status :: 4 - Beta",
|
||
|
|
||
|
# Indicate who your project is intended for
|
||
|
"Intended Audience :: Developers",
|
||
|
|
||
|
# Specify the Python versions you support here.
|
||
|
"Programming Language :: Python :: 3",
|
||
|
"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", "dependencies"] # cannot be dynamic ['license']
|
||
|
|
||
|
[project.scripts]
|
||
|
toxygen = "toxygen.__main__:main"
|
||
|
|
||
|
#[project.license]
|
||
|
#file = "LICENSE.md"
|
||
|
|
||
|
[project.urls]
|
||
|
repository = "https://git.plastiras.org/emdee/toxygen"
|
||
|
|
||
|
[build-system]
|
||
|
requires = ["setuptools >= 61.0"]
|
||
|
build-backend = "setuptools.build_meta"
|
||
|
|
||
|
[tool.setuptools.dynamic]
|
||
|
version = {attr = "toxygen.app.__version__"}
|
||
|
readme = {file = ["README.md", "ToDo.txt"]}
|
||
|
dependencies = {file = ["requirements.txt"]}
|
||
|
|
||
|
[tool.setuptools]
|
||
|
packages = ["toxygen"]
|