-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (38 loc) · 1.02 KB
/
pyproject.toml
File metadata and controls
46 lines (38 loc) · 1.02 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
[build-system]
requires = ["setuptools==68.2.2", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "sekai_generator"
version = "1.3.11"
description = "CLI generator for sing-box configuration files"
readme = "generator/README.md"
requires-python = ">=3.10"
license = { file = "LICENSE" }
authors = [
{ name = "Min Min Latt", email = "minminlaxz@gmail.com" }
]
dependencies = [
"typer>=0.12.0",
"pyyaml>=6.0"
]
[project.urls]
Homepage = "https://github.com/minlaxz/nekohasekai"
Repository = "https://github.com/minlaxz/nekohasekai"
Issues = "https://github.com/minlaxz/nekohasekai/issues"
[project.scripts]
sekai-generator = "generator.app:app"
[tool.setuptools]
include-package-data = true
[tool.setuptools.packages.find]
where = ["."]
include = ["generator"]
exclude = ["tests*", "docs*", "examples*"]
[tool.setuptools.package-data]
generator = [
"data/*.json",
"data/*.jsonc",
"data/*.yaml",
"scripts/*.sh"
]
[tool.setuptools.exclude-package-data]
generator = ["__pycache__", "*.pyc", "*.pyo", "*.pyd"]