-
Notifications
You must be signed in to change notification settings - Fork 3
/
pyproject.toml
50 lines (43 loc) · 1.49 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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
[tool.poetry]
name = "testix"
readme = "README.md"
version = "12.0.1"
description = "Mocking framework Python with *exact* Scenarios"
authors = ["Yoav Kleinberger <[email protected]>"]
license = "MIT"
homepage = "https://testix.readthedocs.io/en/latest"
documentation = "https://testix.readthedocs.io/en/latest"
repository = "https://github.com/haarcuba/testix.git"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = ">=3.8"
pytest = "^8.1.1"
[tool.poetry.dev-dependencies]
hypothesis = {version = "^6.24.0", python = ">=3.8"}
pytest-asyncio = {version = "^0.16.0", python = ">=3.8"}
pytest-cov = {version = "^3.0.0", python = ">=3.8"}
ipython = {version = "^7.28.0", python = ">=3.8"}
[testix.docs]
Sphinx = {version = "^5.3.0", optional = true, python = "3.8"}
sphinx-rtd-theme = {version = "^1.1.1", optional = true, python = "3.8"}
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[project]
name = "testix"
requires-python = ">=3.8"
license = {file = "LICENSE"}
keywords = ["mock", "TDD", "testix", "tests", "Test Driven Development"]
authors = [
{name = "Yoav Kleinberger", email = "[email protected]"},
]
maintainers = [
{name = "Yoav Kleinberger", email = "[email protected]"},
]