-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (47 loc) · 1.83 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
[project]
name = "cbpickaxe"
version = "0.1.2"
description = "A Python library and scripts for data mining the game Cassette Beasts."
readme = "README.md"
requires-python = ">=3.11"
authors = [{name = "ExcaliburZero"}]
license = {text = "MIT License"}
dependencies = ["godot_parser", "smaz-py3>=1.1.3", "Jinja2", "Pillow"]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.11",
"Typing :: Typed"
]
keywords = ["Cassette Beasts"]
[project.optional-dependencies]
test = ["black", "mypy", "pylint", "pytest"]
[project.urls]
Changelog = "https://github.com/ExcaliburZero/cbpickaxe/blob/master/CHANGELOG.md"
Documentation = "https://cbpickaxe.readthedocs.io/en/latest/"
Homepage = "https://github.com/ExcaliburZero/cbpickaxe"
Issues = "https://github.com/ExcaliburZero/cbpickaxe/issues"
Repository = "https://github.com/ExcaliburZero/cbpickaxe.git"
[tool.setuptools]
packages = ["cbpickaxe", "cbpickaxe_scripts"]
[project.scripts]
cbpickaxe_extract_translation = "cbpickaxe_scripts:extract_translation_main"
cbpickaxe_get_move_users = "cbpickaxe_scripts:get_move_users_main"
cbpickaxe_generate_docs = "cbpickaxe_scripts:generate_docs_main"
cbpickaxe_generate_monster_animations = "cbpickaxe_scripts:generate_monster_animations_main"
[tool.setuptools.package-data]
cbpickaxe = ["py.typed"]
cbpickaxe_scripts = ["templates/*.html"]
[tool.mypy]
exclude = ["build", "docs"]
ignore_missing_imports = true
disallow_untyped_defs = true
show_error_codes = true
no_implicit_optional = true
warn_return_any = true
warn_unused_ignores = true
[tool.pylint]
disable = ["C0301", "R0914", "I1101", "R1705", "R0915", "R0902", "W1203", "R0801", "R0911", "R0912", "R0913", "R1724", "W0511"]