-
Notifications
You must be signed in to change notification settings - Fork 18
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (35 loc) · 805 Bytes
/
pyproject.toml
File metadata and controls
43 lines (35 loc) · 805 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
36
37
38
39
40
41
42
[build-system]
requires = [
"setuptools>=61.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "GuildWars2-API-Client"
version = "0.7.0"
description = "Library that interfaces with the Guild Wars 2 API that supports v1 and v2"
readme = "README.rst"
license = { file = "LICENSE" }
authors = [
{ name = "juxhin", email = "juxhin@digital-horror.com" }
]
# Dependencies previously specified under install_requires
dependencies = [
"requests",
]
# Move your keywords list up here in the [project] table.
keywords = [
"guildwars",
"api",
"gw2",
]
[project.optional-dependencies]
dev = [
"ruff",
]
[project.urls]
Home = "https://github.com/JuxhinDB/gw2-api-interface"
[tool.setuptools.packages.find]
exclude = ["test", "res"]
[tool.setuptools]
license-files = []