-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
49 lines (39 loc) · 1.08 KB
/
pyproject.toml
File metadata and controls
49 lines (39 loc) · 1.08 KB
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
[tool.poetry]
name = "python-starter"
version = "0.1.0"
description = "python-starter cookiecutter for new projects"
authors = ["Riley <rileymshea@gmail.com>"]
homepage = "https://github.com/rileymshea/python-starter"
repository = "https://github.com/rileymshea/python-starter"
keywords = ["python-starter"]
readme = "README.md"
packages = [{ include = "python_starter" }]
[tool.poetry.dependencies]
python = "~3.10"
GitPython = "^3.1.20"
[tool.poetry.group.dev.dependencies]
black = "^21.8-beta.0"
ipykernel = "^6.3.1"
isort = "^5.9.3"
rope = "^0.19.0"
mypy = "^0.910"
pyupgrade = "^2.25.0"
pre-commit = "^2.15.0"
[tool.poetry.group.tests.dependencies]
nox = "^2021.6.12"
pytest = "^6.2.5"
pytest-cov = "^2.12.1"
pytest-sugar = "^0.9.4"
pytest-asyncio = "^0.15.1"
pytest-mock = "^3.6.1"
nox-poetry = "^0.8.6"
coverage = {extras = ["toml"], version = "^5.5"}
[tool.isort]
profile = "black"
[tool.pytest.ini_options]
addopts = ["--strict-config", "--strict-markers"]
xfail_strict = true
junit_family = "xunit2"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"