forked from chaosen315/osr-trpg-engine
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
41 lines (37 loc) · 1.21 KB
/
pyproject.toml
File metadata and controls
41 lines (37 loc) · 1.21 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
[project]
name = "osr-trpg-engine"
version = "0.1.0"
description = "一个灵活强大的OSR桌上角色扮演游戏规则引擎,支持完整四则运算的骰子系统、实体管理和规则加载"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "chaosen315", email = "wcqsh315@163.com" },
]
license = { file = "LICENSE" }
urls = { "Homepage" = "https://github.com/chaosen315/osr-trpg-engine", "Bug Tracker" = "https://github.com/chaosen315/osr-trpg-engine/issues" }
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Games/Entertainment :: Role-Playing",
]
dependencies = [
"asteval>=1.0.7",
"black>=25.11.0",
"mypy>=1.18.2",
"pytest>=9.0.1",
"pytest-cov>=7.0.0",
"pyyaml>=6.0.3",
"ruff>=0.14.5",
"types-pyyaml>=6.0.12.20250915",
]
[project.scripts]
osr-trpg = "engine.__main__:main"
roll-dice = "engine.dice:roll_cli"
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["engine", "rules"]