-
Notifications
You must be signed in to change notification settings - Fork 17
/
pyproject.toml
92 lines (84 loc) · 2.06 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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=45", "setuptools-scm[toml]>=7"]
build-backend = "setuptools.build_meta"
[project]
name = "pylivemaker"
description = "Python package for manipulating LiveMaker game resources."
readme = "README.rst"
requires-python = ">=3.8"
license = {text = "GNU General Public License v3 or later (GPLv3+)"}
authors = [
{name = "Peter Rowlands", email = "[email protected]"},
{name = "tinfoil"},
]
keywords = [
"LiveMaker",
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
dependencies = [
"Click>=8.1",
"construct>=2.10,<2.11",
"funcy>=1.4",
"loguru>=0.4.1",
"lxml>=4.3",
"networkx>=2.4",
"numpy>=1.16",
"Pillow>=10.2.0",
"pydot>=1.4.1",
]
dynamic = ["version"]
[project.optional-dependencies]
test = [
"coverage>=7",
"pytest>=5",
"pytest-datadir>=1.3.1",
"pytest-cov>=4.0.0",
]
docs = [
"Sphinx>=6",
]
[project.urls]
documentation = "https://pylivemaker.readthedocs.io/en/latest/"
repository = "https://github.com/pmrowla/pylivemaker"
changelog = "https://github.com/pmrowla/pylivemaker/blob/master/HISTORY.rst"
[project.scripts]
lmar = "livemaker.cli:lmar"
lmgraph = "livemaker.cli:lmgraph"
lmlpb = "livemaker.cli:lmlpb"
lmlsb = "livemaker.cli:lmlsb"
lmpatch = "livemaker.cli:lmpatch"
galconvert = "livemaker.cli:galconvert"
lmbmp = "livemaker.cli:lmbmp"
[tool.black]
line-length = 119
include = '\.pyi?$'
exclude = '''
/(
\.git
| \.eggs
| \.mypy_cache
| \.tox
| \.venv
| \.github
| _build
| build
| dist
)/
'''
[tool.isort]
line_length = 119
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools_scm]
write_to = "src/livemaker/_version.py"
local_scheme = "no-local-version"