测试哦1

This commit is contained in:
2025-10-09 18:59:33 +08:00
commit 1ca65cf16c
7 changed files with 1061 additions and 0 deletions

29
pyproject.toml Normal file
View File

@ -0,0 +1,29 @@
[project]
name = "ptimeparse"
version = "0.1.0"
description = "一个用于解析中文的时间表达的库"
authors = [
{name = "passthem", email = "Passthem183@gmail.com"}
]
readme = "README.md"
requires-python = ">=3.9"
dependencies = [
"ply (>=3.11,<4.0)"
]
license = "MIT"
[tool.poetry]
packages = [{include = "ptimeparse" }]
[build-system]
requires = ["poetry-core>=2.0.0,<3.0.0"]
build-backend = "poetry.core.masonry.api"
[[tool.poetry.source]]
name = "gitea-private"
url = "https://gitea.service.jazzwhom.top/api/packages/Passthem/pypi"
[dependency-groups]
dev = [
"pytest (>=8.4.2,<9.0.0)"
]