-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
57 lines (49 loc) · 1.7 KB
/
Copy pathpyproject.toml
File metadata and controls
57 lines (49 loc) · 1.7 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
53
54
55
56
57
[build-system]
requires = ["setuptools>=68", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "liantai"
version = "0.1.0"
description = "LianTai (莲台) - cross-platform launcher: open a terminal, activate a conda/venv Python env, and resume an opencode session, with adjustable window position."
readme = "README.md"
requires-python = ">=3.9"
license = { text = "MIT" }
authors = [{ name = "CodeOfMe", email = "cycleuser@cycleuser.org" }]
keywords = ["terminal", "conda", "venv", "opencode", "launcher", "cross-platform"]
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: System :: Shells",
"Topic :: Utilities",
]
dependencies = []
[project.optional-dependencies]
rich = ["rich>=13.0"]
dev = ["pytest>=7", "ruff>=0.4", "mypy>=1.10", "build", "twine"]
[project.scripts]
liantai = "liantai.cli:main"
[project.urls]
Homepage = "https://github.com/CodeOfMe/LianTai"
Repository = "https://github.com/CodeOfMe/LianTai"
Issues = "https://github.com/CodeOfMe/LianTai/issues"
[tool.setuptools.packages.find]
where = ["src"]
[tool.ruff]
line-length = 110
target-version = "py39"
[tool.ruff.lint]
select = ["E", "F", "W", "I", "UP", "B"]
ignore = ["E501", "UP007", "UP045"]
[tool.mypy]
python_version = "3.10"
ignore_missing_imports = true
warn_unused_ignores = true