-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (31 loc) · 1.02 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
[tool.poetry]
name = "tox-backtocks"
version = "0.4.0"
description = ""
authors = ["Damien Nadé <[email protected]>"]
license = "LGPL-2.1-or-later"
repository = "https://github.com/Anvil/tox-backtocks/"
readme = "README.md"
keywords = ["tox", "backtocks", "backticks", "backquotes"]
documentation = "https://github.com/Anvil/tox-backtocks/"
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Framework :: tox",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Quality Assurance",
"Topic :: Software Development :: Testing"
]
[tool.poetry.plugins."tox"]
backtocks = "tox_backtocks"
[tool.poetry.dependencies]
python = "^3.10"
tox = ">=4.4"
[build-system]
requires = ["poetry-core>=1.4.0"]
build-backend = "poetry.core.masonry.api"