-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
35 lines (31 loc) · 794 Bytes
/
Copy pathpyproject.toml
File metadata and controls
35 lines (31 loc) · 794 Bytes
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
[project]
name = "nstools"
version = "0.0.1"
description = "A collection of tools to build projects for NationStates"
authors = [
{ name = "Ruben Bekaert", email = "bekaertruben@gmail.com" }
]
license = { text = "MIT" }
dependencies = [
"requests >= 2.32.3",
"xmltodict >= 0.14.2",
"lxml >= 5.3.0",
"pyyaml >= 6.0.2",
]
requires-python = ">=3.9"
[project.optional-dependencies]
async = [
"aiohttp >= 3.11.11",
]
examples = [
"rich >= 13.9.4",
"pandas >= 2.2.3",
"pyarrow >= 18.1.0",
]
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
packages = ["nstools"]
[tool.setuptools.package-data]
"nstools" = ["data/census_names.yaml", "data/html_escape_characters.yaml", "data/census_distribution.yaml"]