-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
43 lines (38 loc) · 1.16 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "cs_board_tools"
dynamic = [
"version"
]
authors = [
{ name="Custom Street", email="[email protected]" },
]
description = "A set of tools designed for working with Custom Street user content."
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
'bytechomp @ git+https://github.com/AndrewSpittlemeister/bytechomp.git',
'click ~= 8.1.7',
'jsonschema ~= 4.19.1',
'prettytable ~= 3.9.0',
'ruamel.yaml ~= 0.18.5',
'requests ~= 2.31.0',
]
[project.scripts]
cs-board-tools = "cs_board_tools.cli:cs_board_tools"
[project.urls]
"Homepage" = "https://github.com/FortuneStreetModding/cs-board-tools"
"Bug Tracker" = "https://github.com/FortuneStreetModding/cs-board-tools/issues"
[tool.hatch.version]
path = "cs_board_tools/__about__.py"
[tool.hatch.metadata]
allow-direct-references = true