forked from lcosmin/boardgamegeek
-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathpyproject.toml
More file actions
71 lines (61 loc) · 1.85 KB
/
pyproject.toml
File metadata and controls
71 lines (61 loc) · 1.85 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "bgg-api"
version = "1.1.15"
description = "A Python API for boardgamegeek.com"
readme = "README.md"
license = {text = "BSD"}
requires-python = ">=3.8"
keywords = ["boardgamegeek", "bgg", "boardgame", "api"]
authors = [
{name = "Jakub Boukal", email = "www.bagr@gmail.com"}
]
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"License :: OSI Approved :: BSD License",
"Development Status :: 4 - Beta",
"Operating System :: OS Independent",
"Intended Audience :: Developers",
"Topic :: Games/Entertainment :: Board Games",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content"
]
dependencies = [
"requests>=2.31.0,<3.0.0",
"requests-cache>=1.1.1,<2.0.0"
]
[project.urls]
Homepage = "https://github.com/SukiCZ/boardgamegeek"
Documentation = "https://bgg-api.readthedocs.io/en/latest/"
Coverage = "https://codecov.io/gh/SukiCZ/boardgamegeek"
[project.scripts]
boardgamegeek = "boardgamegeek.main:main"
[tool.bumpversion]
current_version = "1.1.15"
commit = true
tag = true
[[tool.bumpversion.files]]
filename = "setup.py"
search = "version=\"{current_version}\""
replace = "version=\"{new_version}\""
[[tool.bumpversion.files]]
filename = "boardgamegeek/__init__.py"
search = "__version__ = \"{current_version}\""
replace = "__version__ = \"{new_version}\""
[tool.bdist_wheel]
universal = 1
[tool.ruff]
line-length = 120
[tool.pytest.ini_options]
addopts = "-m 'not integration' --ignore=setup.py"
[tool.mypy]
exclude = "tests"
ignore_missing_imports = true
strict = true