-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
55 lines (51 loc) · 1.42 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "catchpy"
dynamic = ["version"]
description = "Annotation storage backend"
readme = "README.rst"
authors = [
{ name = "nmaekawa", email = "[email protected]" },
{ name = "arthurian", email = "[email protected]" },
{ name = "coledcrawford", email = "[email protected]" },
{ name = "d-flood", email = "[email protected]" },
]
keywords = [
"catchpy",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: Django",
"Framework :: Django :: 4.2",
"Framework :: Django :: 5.0",
"Framework :: Django :: 5.1",
"Intended Audience :: Developers",
"Natural Language :: English",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"Django>=4.2",
"iso8601>=2.0.0",
"jsonschema>=4.18.4",
"PyJWT>=2.8.0",
"PyLD>=2.0.4, <3.0.0",
"python-dateutil>=2.8.2",
"python-dotenv>=1.0.0",
"requests>=2.31.0",
"django-log-request-id>=2.1.0",
"django-cors-headers>=4.2.0",
]
[tool.hatch.version]
path = "catchpy/__init__.py"
[tool.hatch.build.targets.sdist]
include = [
"/catchpy",
]
[project.urls]
Homepage = "https://github.com/nmaekawa/catchpy"