blob: e5e7f0933e7afedce3351d8f634720e22e5fe7fc (
plain)
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
|
[project]
name = "cru-py"
version = "0.1.0"
requires-python = ">=3.11"
[tool.poetry]
package-mode = false
name = "cru"
version = "0.1.0"
description = ""
authors = ["Yuqian Yang <crupest@crupest.life>"]
license = "MIT"
readme = "README.md"
[tool.poetry.dependencies]
python = "^3.11"
[tool.poetry.group.dev.dependencies]
mypy = "^1.13.0"
[tool.ruff.lint]
select = ["E", "F", "B"]
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
|