update
This commit is contained in:
parent
c5aff5fd3b
commit
84afbe61b8
5 changed files with 43 additions and 1 deletions
1
.gitignore
vendored
1
.gitignore
vendored
|
@ -6,6 +6,7 @@ __pycache__/
|
||||||
*.diff
|
*.diff
|
||||||
.pylint.*
|
.pylint.*
|
||||||
*~
|
*~
|
||||||
|
*.bak
|
||||||
|
|
||||||
# C extensions
|
# C extensions
|
||||||
*.so
|
*.so
|
||||||
|
|
|
@ -2,6 +2,6 @@
|
||||||
|
|
||||||
find * -name \*.py | xargs grep -l '[ ]*$' | xargs sed -i -e 's/[ ]*$//'
|
find * -name \*.py | xargs grep -l '[ ]*$' | xargs sed -i -e 's/[ ]*$//'
|
||||||
rsync "$@" -vax --include \*.py \
|
rsync "$@" -vax --include \*.py \
|
||||||
--exclude Toxygen.egg-info --exclude build \
|
--exclude \*.egg-info --exclude libs --exclude build \
|
||||||
--exclude \*.pyc --exclude .pyl\* --exclude \*~ --exclude \*.so \
|
--exclude \*.pyc --exclude .pyl\* --exclude \*~ --exclude \*.so \
|
||||||
./ ../tox_profile.git/|grep -v /$
|
./ ../tox_profile.git/|grep -v /$
|
||||||
|
|
|
@ -231,5 +231,7 @@ There are a couple of bash scripts to show usage:
|
||||||
There is a copy of the Tox [spec](https://toktok.ltd/spec.html)
|
There is a copy of the Tox [spec](https://toktok.ltd/spec.html)
|
||||||
in the repo - it is missing any description of the groups section.
|
in the repo - it is missing any description of the groups section.
|
||||||
|
|
||||||
|
The uptodate version of this code is on https://git.plastiras.org/emdee/tox_profile
|
||||||
|
|
||||||
Work on this project is suspended until the
|
Work on this project is suspended until the
|
||||||
[MultiDevice](https://git.plastiras.org/emdee/tox_profile/wiki/MultiDevice-Announcements-POC) problem is solved. Fork me!
|
[MultiDevice](https://git.plastiras.org/emdee/tox_profile/wiki/MultiDevice-Announcements-POC) problem is solved. Fork me!
|
||||||
|
|
39
pyproject.toml
Normal file
39
pyproject.toml
Normal file
|
@ -0,0 +1,39 @@
|
||||||
|
|
||||||
|
[project]
|
||||||
|
name = 'tox_profile'
|
||||||
|
dependencies = ['toxygen_wrapper', 'yaml', 'msgpack'] # coloredlogs nmap
|
||||||
|
requires-python = ">= 3.6"
|
||||||
|
description = "Read and manipulate tox profile files"
|
||||||
|
keywords = ["tox", "tox_profile"]
|
||||||
|
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",
|
||||||
|
]
|
||||||
|
dynamic = ["version", "readme", ] # cannot be dynamic ['license']
|
||||||
|
|
||||||
|
[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"
|
||||||
|
|
||||||
|
[tool.setuptools.dynamic]
|
||||||
|
version = {attr = "tox_profile.__version__"}
|
||||||
|
readme = {file = ["README.md"]}
|
||||||
|
|
||||||
|
[project.scripts]
|
||||||
|
tox_profile = "tox_profile:iMain"
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue