-
-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
21 lines (19 loc) · 739 Bytes
/
pyproject.toml
File metadata and controls
21 lines (19 loc) · 739 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
[project]
name = "tessie_api"
version = "0.0.1"
authors = [{ name = "Andrew Gierens", email = "apgierens@gmail.com" }]
description = "A small python package that wraps up the Tessie API "
readme = "README.md"
requires-python = ">=3.5"
exclude = ["*.env", "*.env.example", ".devcontainer/", ".vscode/", "tests/"]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
[project.urls]
"Homepage" = "https://github.com/andrewgierens/tessie_python_api"
"Bug Tracker" = "https://github.com/andrewgierens/tessie_python_api/issues"
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"