-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
50 lines (34 loc) · 925 Bytes
/
pyproject.toml
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
[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "clash-net-lib"
packages = [{ include = "clashnetlib" }]
version = "v0.0.0"
description = "The API for Clash Net"
readme = "README.md"
authors = ["Martin Miglio <martin@pyclashbot.app>"]
license = "MIT"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = []
repository = "https://github.com/pyclashbot/clash-net-lib"
[tool.poetry.dependencies]
python = "^3.12"
numpy = "^1"
[tool.poetry.group.dev]
optional = true
[tool.poetry.group.dev.dependencies]
ruff = ">=0.6.5,<0.8.0"
[tool.poetry.group.build]
optional = true
[tool.poetry.group.build.dependencies]
twine = "^5"
[tool.ruff.lint]
select = ["ALL"]
[tool.ruff]
line-length = 120