-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
67 lines (57 loc) · 1.21 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
65
66
67
[tool.poetry]
name = "mcwiki"
version = "0.2.1"
description = "A scraping library for the Minecraft Wiki"
authors = ["Valentin Berlier <berlier.v@gmail.com>"]
license = "MIT"
homepage = "https://github.com/vberlier/mcwiki"
repository = "https://github.com/vberlier/mcwiki"
documentation = "https://github.com/vberlier/mcwiki"
readme = "README.md"
keywords = [
"mcwiki",
"minecraft",
"scraping",
"wiki",
"minecraft-wiki"
]
include = ["mcwiki/py.typed"]
[tool.poetry.dependencies]
python = "^3.8"
requests = "^2.26.0"
beautifulsoup4 = "^4.9.3"
[tool.poetry.dev-dependencies]
black = "^21.7b0"
pytest = "^6.2.4"
pytest-insta = "^0.1.10"
isort = "^5.9.3"
python-semantic-release = "^7.19.1"
[tool.black]
target-version = ["py38"]
include = '\.pyi?$'
exclude = '''
/(
\.eggs
| \.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| node_modules
| _build
| buck-out
| build
| dist
)/
'''
[tool.isort]
profile = "black"
[tool.semantic_release]
branch = "main"
version_variable = ["mcwiki/__init__.py:__version__"]
version_toml = "pyproject.toml:tool.poetry.version"
major_on_zero = false
build_command = "poetry build"
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"