-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
52 lines (47 loc) · 1013 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
46
47
48
49
50
51
52
[build-system]
requires = ["pdm-backend"]
build-backend = "pdm.backend"
[project]
name = "MediaWiki-Tools"
version = "0.1.0"
description = "Tools for getting data from MediaWiki websites."
authors = [
{name = "Nicholas Robertson", email = "[email protected]"},
]
dependencies = [
"beautifulsoup4",
"requests",
"pymediawiki",
]
requires-python = ">=3.8"
readme = "README.md"
license = {text = "MIT"}
[tool.pdm]
[[tool.pdm.source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[[tool.pdm.source]]
url = "https://test.pypi.org/simple/"
verify_ssl = true
name = "testpypi"
[tool.pdm.dev-dependencies]
dev = [
"ipython",
"ipykernel",
"flake8",
"deepdiff",
"pytest",
"flake8-tabs",
"yapf",
"pep8-naming",
"flake8-docstrings",
"flake8-rst-docstrings",
"pytest-cov",
"build",
"twine",
"pdoc",
]
[tool.pdm.scripts]
make_docs = "pdoc mwtools/ -d google -o docs/"
get_coverage = "pytest --cov-report xml:cov.xml --cov mwtools"