-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (35 loc) · 1.01 KB
/
pyproject.toml
File metadata and controls
38 lines (35 loc) · 1.01 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = [ "poetry-core" ]
[tool.poetry]
name = "testpad-python"
version = "0.1.0"
description = "Python API client for the TestPad service"
authors = [ "Testpad <code@testpad.com>" ]
license = "MIT"
readme = "README.md"
packages = [
{ include = "testpad" },
]
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",
"Intended Audience :: Developers",
"Topic :: Software Development :: Quality Assurance",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
python = "^3.9"
requests = "^2.32"
[tool.poetry.group.dev.dependencies]
pytest = "^8.3"
pytest-cov = "^6.0"
pre-commit = "^4.0"
twine = "^4.0"
prospector = "^1.13.3"