-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
29 lines (26 loc) · 926 Bytes
/
pyproject.toml
File metadata and controls
29 lines (26 loc) · 926 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/script_utilities"]
[project]
name = "script-utilities"
version = "1.0.0"
authors = [
{name = "Krummers", email = "krummers10@gmail.com"}
]
description = "A Python package containing useful functions and classes for scripting MKW-related projects."
readme = "README.md"
license = {file = "LICENSE"}
requires-python = ">=3.10"
dependencies = ["httpx", "httpx[http2]", "tdqm"]
classifiers = [
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)"
]
[project.urls]
repository = "https://github.com/Krummers/Script-Utilities"
issues = "https://github.com/Krummers/Script-Utilities/issues"
releasenotes = "https://github.com/Krummers/Script-Utilities/releases"