-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
45 lines (39 loc) · 1007 Bytes
/
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
[tool.poetry]
name = "cookiecutter-python-poetry"
version = "0.1.0"
description = "Cookiecutter template for a Python package using Poetry."
authors = ["Guiferviz <[email protected]>"]
license = "MIT"
readme = "README.md"
repository = "https://github.com/guiferviz/cookiecutter-python-poetry"
keywords = [
"cookiecutter",
"poetry",
"template",
"package"
]
classifiers = [
"Environment :: Console",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Topic :: Software Development",
]
[tool.poetry.urls]
"Bug Tracker" = "https://github.com/guiferviz/cookiecutter-python-poetry/issues"
[tool.poetry.dependencies]
python = ">=3.7"
[tool.poetry.group.dev.dependencies]
pytest = "^7.2.0"
pytest-cookies = "^0.6.1"
[build-system]
requires = ["poetry>=1.1.5"]
build-backend = "poetry.masonry.api"
[tool.pytest.ini_options]
addopts = "-vvv"
testpaths = [
"tests/"
]
markers = [
"slow", # mark test as slow
]