-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
64 lines (56 loc) · 1.8 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[build-system]
build-backend = "poetry.core.masonry.api"
requires = ["poetry-core"]
[tool.fawltydeps]
ignore_unused = ["coveralls", "pytest-cov", "pytest-xdist"]
[tool.isort]
profile = "black"
[tool.poetry]
authors = ["Alex Brandt <[email protected]>"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: The Unlicense (Unlicense)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development",
"Topic :: System :: Installation/Setup",
"Typing :: Typed"
]
description = "You can use template.py to create a new GitHub repository."
include = ["templatise/licenses.json"]
keywords = ["python", "template", "vscode", "devcontainers"]
license = "unlicense"
name = "templatise"
readme = "README.md"
repository = "https://github.com/alunduil/template.py"
version = "2.3.1"
[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.25"
[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"
pytest-xdist = {extras = ["psutil"], version = "^3.2.1"}
[tool.poetry.scripts]
initialise = 'templatise.initialise:main'
[tool.pytest.ini_options]
addopts = "--doctest-modules --cov=templatise --cov-report=term-missing -n logical"
enable_assertion_pass_hook = true
testpaths = ["templatise_test"]
[tool.vulture]
paths = ["templatise", "templatise_test"]