-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
40 lines (35 loc) · 1.3 KB
/
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
39
40
[build-system]
requires = ["hatchling>=1.0"]
build-backend = "hatchling.build"
[project]
name = "content-types"
version = "0.2.3"
description = "A library to map file extensions to content types and vice versa."
readme = "README.md"
license = "MIT"
authors = [
{ name = "Michael Kennedy", email = "[email protected]" }
]
requires-python = ">=3.10, <=3.14"
keywords = ["mime", "content-type", "mapping", "file extensions"]
homepage = "https://github.com/mikeckennedy/content-types"
# If you have no runtime dependencies, this can be an empty array or omitted
dependencies = []
classifiers = [
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Operating System :: OS Independent",
"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",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"
]
[project.urls]
"Homepage" = "https://github.com/mikeckennedy/content-types"
"Bug Reports" = "https://github.com/mikeckennedy/content-types/issues"
"Source" = "https://github.com/mikeckennedy/content-types"
[project.scripts]
content-types = "content_types:cli"