update
This commit is contained in:
parent
7cf2f66783
commit
510e790155
5 changed files with 107 additions and 178 deletions
|
|
@ -1,8 +1,6 @@
|
|||
|
||||
[project]
|
||||
name = 'tox_profile'
|
||||
dependencies = ['toxygen_wrapper', 'yaml', 'msgpack'] # coloredlogs nmap
|
||||
requires-python = ">= 3.6"
|
||||
requires-python = ">= 3.7"
|
||||
description = "Read and manipulate tox profile files"
|
||||
keywords = ["tox", "tox_profile"]
|
||||
classifiers = [
|
||||
|
|
@ -17,14 +15,27 @@ classifiers = [
|
|||
|
||||
# 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.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']
|
||||
|
||||
dynamic = ["version", "readme", "dependencies"] # cannot be dynamic ['license']
|
||||
|
||||
[project.scripts]
|
||||
tox_profile = "tox_profile:iMain"
|
||||
|
||||
[project.urls]
|
||||
repository = "https://git.plastiras.org/emdee/tox_profile"
|
||||
homepage = "https://git.plastiras.org/emdee/tox_profile"
|
||||
|
||||
|
||||
[build-system]
|
||||
requires = ["setuptools >= 61.0"]
|
||||
build-backend = "setuptools.build_meta"
|
||||
|
|
@ -32,8 +43,4 @@ build-backend = "setuptools.build_meta"
|
|||
[tool.setuptools.dynamic]
|
||||
version = {attr = "tox_profile.__version__"}
|
||||
readme = {file = ["README.md"]}
|
||||
|
||||
[project.scripts]
|
||||
tox_profile = "tox_profile:iMain"
|
||||
|
||||
|
||||
dependencies = {file = ["requirements.txt"]}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue