-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.08 KB
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
35
36
37
38
39
40
41
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core" ]
[tool.poetry]
name = "testpad-cli"
version = "0.1.0"
description = "CLI Tool for interacting with the Testpad API"
authors = [ "Testpad <code@testpad.com>" ]
license = "MIT"
readme = "README.md"
packages = [
{ include = "testpad_cli" },
]
exclude = [ "**/tests/**", "**/testutils.py", "**/tests.py" ]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: MIT License",
"Environment :: Console",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Operating System :: OS Independent",
]
[tool.poetry.scripts]
testpad = 'testpad_cli.entrypoint:cli'
[tool.poetry.dependencies]
python = "^3.9"
click = "^8.1"
tabulate = "^0.9.0"
[tool.poetry.group.dev.dependencies]
pre-commit = "^4.0"
twine = "^4.0"
prospector = "^1.13.3"