generated from zmievsa/python-template
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
40 lines (36 loc) · 1.19 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
[tool.poetry]
name = "pytest-fixture-classes"
version = "1.0.3"
description = "Fixtures as classes that work well with dependency injection, autocompletetion, type checkers, and language servers"
authors = ["Stanislav Zmiev <[email protected]>"]
readme = "README.md"
license = "MIT"
keywords = ["pytest", "py.test", "type hints", "annotations", "fixtures", "factory fixtures"]
documentation = "https://github.com/zmievsa/pytest-fixture-classes"
repository = "https://github.com/zmievsa/pytest-fixture-classes"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Framework :: Pytest",
"Intended Audience :: Developers",
"Operating System :: Unix",
"Operating System :: POSIX",
"Operating System :: Microsoft :: Windows",
"Topic :: Utilities",
"Topic :: Software Development :: Testing",
]
[tool.poetry.dependencies]
python = ">=3.7"
pytest = "*"
typing-extensions = ">=4.4.0"
[tool.poetry.group.dev.dependencies]
pdbpp = "^0.10.3"
pyupgrade = "^2.37.3"
black = "^22.8.0"
autoflake = "^1.5.3"
pytest = "^7.1.3"
pytest-cov = "^3.0.0"
isort = "^5.10.1"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"