-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (30 loc) · 1.14 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
[project]
name = "AoE2ScenarioRms"
version = "<VERSION_HERE>"
authors = [
{ name = "Kerwin Sneijders", email = "[email protected]" },
]
description = """Add replay-ability to scenarios through random resource placement using triggers & XS!"""
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["AoE2ScenarioParser>=0.1.68"]
[project.urls]
"Homepage" = "https://github.com/KSneijders/AoE2ScenarioRms"
"Bug Tracker" = "https://github.com/KSneijders/AoE2ScenarioRms/issues"
"Examples" = "https://github.com/KSneijders/AoE2ScenarioRms/tree/main/examples"
"Changelog" = "https://github.com/KSneijders/AoE2ScenarioRms/blob/main/CHANGELOG.md"
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["AoE2ScenarioRms*"]
[tool.setuptools.package-data]
# What doesn't work (absolutely no idea why):
# - "xs/**.xs" (snippets not included)
# - "*.xs" (No XS files at all)
AoE2ScenarioRms = ["xs/*.xs", "xs/snippets/*.xs"]