-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
30 lines (27 loc) · 999 Bytes
/
pyproject.toml
File metadata and controls
30 lines (27 loc) · 999 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "essentials"
dynamic = ["version"]
description = "General purpose classes and functions"
readme = "README.md"
license = { file = "LICENSE" }
authors = [{ name = "Roberto Prevato", email = "roberto.prevato@gmail.com" }]
keywords = ["core", "utilities"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Operating System :: OS Independent",
]
urls = { homepage = "https://github.com/Neoteroi/essentials" }
[tool.hatch.version]
path = "essentials/__init__.py"
[tool.setuptools.packages.find]
include = ["essentials", "essentials.typesutils", "essentials.decorators"]