generated from alunduil/template.py
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (42 loc) · 1.48 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
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.fawltydeps]
ignore_unused = ["coveralls", "pytest-cov", "pytest-xdist", "vale"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Jose Agustin de la Puente Aljovin <[email protected]>"]
classifiers = ["Development Status :: 3 - Alpha", "License :: OSI Approved :: The Unlicense (Unlicense)", "Programming Language :: Python :: 3 :: Only", "Programming Language :: Python :: 3.10", "Programming Language :: Python :: 3.11", "Programming Language :: Python :: 3.7", "Programming Language :: Python :: 3.8", "Programming Language :: Python :: 3.9", "Typing :: Typed"]
description = ""
include = ["templatise/licenses.json"]
keywords = []
license = "unlicense"
name = "pypack"
readme = "README.md"
repository = "https://github.com/alunduil/pypack"
version = "0.1.0"
[tool.poetry.dependencies]
click = "^8.1.3"
click-log = "^0.4.0"
python = "^3.9"
requests = "^2.28.1"
retry = "^0.9.2"
toml = "^0.10.2"
toml-sort = "^0.23.0"
[tool.poetry.group.test.dependencies]
coveralls = "^3.3.1"
hypothesis = "^6.70.0"
pytest = ">=7.2.0,<9.0.0"
pytest-cov = ">=4,<6"
pytest-golden = "^0.2.2"
vale = "^3.0.7.0"
[tool.poetry.group.test.dependencies.pytest-xdist]
extras = ["psutil"]
version = "^3.2.1"
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov=pypack --cov-report=term-missing -n logical"
enable_assertion_pass_hook = true
testpaths = ["pypack_test"]
[tool.vulture]
paths = ["pypack", "pypack_test"]