forked from josefwaller/PyCatan2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
39 lines (33 loc) · 909 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
[tool.poetry]
name = "pycatan"
version = "1.0.1"
description = "A library for running games of The Settlers of Catan"
authors = ["Josef Waller <[email protected]>"]
license = "MIT"
homepage = "https://github.com/josefwaller/PyCatan2"
repository = "https://github.com/josefwaller/PyCatan2"
[tool.poetry.dependencies]
python = "^3.8"
colored = "^1.4.2"
[tool.poetry.dev-dependencies]
flake8 = "^3.9.2"
black = "^21.7b0"
coverage = {extras = ["toml"], version = "^5.5"}
pytest-snapshot = "^0.6.1"
sphinx-rtd-theme = "^0.5.2"
pytest-cov = "^2.12.1"
pytest = "^6.2.4"
flake8-docstrings = "^1.6.0"
sphinx-autodoc-typehints = "^1.12.0"
Sphinx = "^4.1.2"
[tool.coverage.paths]
source = ["src"]
[tool.coverage.run]
branch = true
source = ["pycatan"]
[tool.coverage.report]
show_missing = true
fail_under = 100
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"