-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (32 loc) · 810 Bytes
/
pyproject.toml
File metadata and controls
40 lines (32 loc) · 810 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
31
32
33
34
35
36
37
38
39
40
[project]
name = "funcproxy"
version = "0.0.1"
authors = [
{ name="hy", email="ttgml@outlook.com" },
]
description = "funcproxy is a tool for function proxy"
readme = "README.md"
[metadata]
license-files = ["LICENSE"]
requires-python = ">=3.8"
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"flask==3.1.0",
"Flask-Cors == 5.0.0",
"gevent == 24.11.1",
"requests == 2.32.3",
]
[project.scripts]
funcproxy = "funcproxy.cli:main"
[project.urls]
Homepage = "https://github.com/ttgml/funcproxy"
Issues = "https://github.com/ttgml/funcproxy/issues"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"funcproxy.core" = ["templates/*.html", "static/*"]