-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
38 lines (31 loc) · 1.31 KB
/
pyproject.toml
File metadata and controls
38 lines (31 loc) · 1.31 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
[build-system]
requires = [ "setuptools>=61.0",]
build-backend = "setuptools.build_meta"
[project]
name = "fastx-tui"
version = "0.1.55"
description = "FastX TUI - 统一视图架构版本"
readme = "README.md"
requires-python = ">=3.10"
dependencies = [ "loguru>=0.7.3", "psutil>=5.9.0", "pyyaml>=6.0", "rich>=13.0.0", "setuptools>=80.9.0", "requests>=2.31.0", "toml>=0.10.2", "cookiecutter>=2.6.0", "pydantic>=2.0.0", "pydantic-settings>=2.0.0", "typer>=0.20.1", "validators>=0.35.0", "pyinstaller>=6.17.0", "prompt-toolkit>=3.0.52", "mkdocs>=1.5.0", "mkdocs-material>=9.5.0",]
[project.scripts]
fastx-tui = "main:main"
fastx-tui-ruff = "tools.ruff_commands:app"
fastx-tui-build = "tools.build_commands:build_exe"
fastx-tui-docs = "tools.docs_commands:app"
[project.optional-dependencies]
dev = [ "ruff>=0.5.0", "pyinstaller>=6.0.0",]
[tool.ruff]
line-length = 120
target-version = "py310"
exclude = [ "{{cookiecutter.plugin_name}}", ".venv", "__pycache__", "dist", "*.egg-info", "tests",]
[tool.ruff.lint]
select = [ "E", "F", "W", "I", "C90", "N", "UP", "YTT", "T20",]
ignore = [ "E501",]
[tool.ruff.format]
quote-style = "double"
indent-style = "space"
[tool.setuptools.packages.find]
where = [ ".",]
include = [ "core", "config", "features", "locales", "plugins", "tools",]
exclude = [ "*.tests", "*.tests.*", "tests.*", "tests",]