mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-09 17:40:17 +00:00
33 lines
770 B
TOML
33 lines
770 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "arcaea-offline"
|
|
version = "0.1.0"
|
|
authors = [{ name = "283375", email = "log_283375@163.com" }]
|
|
description = "Manage your local Arcaea score database."
|
|
readme = "README.md"
|
|
requires-python = ">=3.8"
|
|
dependencies = [
|
|
"beautifulsoup4==4.12.2",
|
|
"SQLAlchemy==2.0.20",
|
|
"SQLAlchemy-Utils==0.41.1",
|
|
"Whoosh==2.7.4",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 3 - Alpha",
|
|
"Programming Language :: Python :: 3",
|
|
]
|
|
|
|
[project.urls]
|
|
"Homepage" = "https://github.com/283375/arcaea-offline"
|
|
"Bug Tracker" = "https://github.com/283375/arcaea-offline/issues"
|
|
|
|
[tool.isort]
|
|
profile = "black"
|
|
src_paths = ["src/arcaea_offline"]
|
|
|
|
[tool.pyright]
|
|
ignore = ["**/__debug*.*"]
|