-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (47 loc) · 1.96 KB
/
pyproject.toml
File metadata and controls
52 lines (47 loc) · 1.96 KB
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
[project]
name = "pyboot-etcdv3-browser"
version = "1.0.0" # 版本顺手+1,避免“文件已存在”
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
authors = [
{name = "joinsunsoft", email = "793875613@qq.com"},
]
maintainers = [{name = "joinsunsoft", email = "inthirties.liu@hotmail.com"}]
requires-python = ">=3.12.10"
keywords = ["web", "framework", "cli", "springboot", "fastapi", "redis"]
description="python-etcdv3-browser is a program built with PyBoot, and Etcd-Browser is a graphical management tool for etcd. At present, among the management-tool products in the etcd field, none is particularly outstanding; thus, etcdv3-browser can be described as unique and eye-catching."
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"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",
"Topic :: Software Development :: Libraries :: Application Frameworks",
]
dependencies = [
"pyboot-datasource",
"pyboot-jwt",
"pyboot-webmvc"
]
[project.urls] # 以前叫 url/homepage
Homepage = "https://gitee.com/pyboot/pyboot-etcdv3-browser"
Repository = "https://gitee.com/pyboot/pyboot-etcdv3-browser"
Issues = "https://gitee.com/pyboot/pyboot-etcdv3-browser"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
# py-modules = [] # 清空模块列表
# packages = ["dataflow"] # 只打包这个包
# packages = [
# "dataflow",
# "dataflow.module",
# "dataflow.module.context",
# ]
[tool.setuptools.packages.find]
where = ["."] # 或 ["src"] 如果你用 src-layout
# include = ["pyboot*"] # 把 pyboot 及其所有子包都收进来