-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (46 loc) · 1.41 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "responcer"
dynamic = ["version"]
description = "Service return headers from client with real ip address."
readme = "README.md"
license = "MIT"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Web Environment",
"Framework :: AnyIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"click>=8.1.3",
"fastapi>=0.79.0",
"Jinja2>=3.1.2",
"pydantic>=1.9.1",
"uvicorn>=0.18.2",
"psutil>=5.9.8",
]
[project.urls]
Homepage = "https://github.com/vladtara/responcer"
Documentation = "https://responcer.glaps.fun/docs"
Source = "https://github.com/vladtara/responcer"
[project.scripts]
responcer = "responcer.run:main"
[tool.hatch.version]
path = "responcer/__init__.py"
[tool.hatch.build.targets.sdist]
include = ["*"]
[tool.hatch.build.targets.wheel]
packages = ["responcer"]