-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
38 lines (33 loc) · 940 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "wdsf-api"
dynamic = ["version"]
description = "WDSF API Python Client (unofficial)"
readme = "README.md"
license = ""
dependencies = [
"pydantic",
"uplink",
]
keywords = ["WDSF", "World DanceSport Federation", "DanceSport", "API"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
]
[tool.hatch.version]
path = "wdsf_api/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/tests",
]
[tool.hatch.build.targets.wheel]
packages = ["wdsf_api"]
[project.urls]
Homepage = "https://github.com/dancesport-live/wdsf-api-python-client"
Issues = "https://github.com/dancesport-live/wdsf-api-python-client/issues"