-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
36 lines (32 loc) · 970 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aliases"
description = "Keeping track of aliases"
readme = "README.rst"
requires-python = ">=3.10"
license = "MIT"
authors = [
{ name = "Koen Baak", email = "koenbaak@gmail.com" },
]
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Topic :: Software Development :: Libraries :: Application Frameworks",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Libraries",
"License :: OSI Approved :: MIT License",
]
dependencies = []
dynamic = ["version"]
[project.urls]
Homepage = "https://github.com/KoenBaak/aliases"
[project.optional-dependencies]
test = []
doc = []
[tool.hatch.version]
path = "src/aliases/__init__.py"