Ai
1 Star 8 Fork 18

vn.py官方/vnpy_sqlite

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
pyproject.toml 2.14 KB
一键复制 编辑 原始数据 按行查看 历史
vn.py 提交于 2025-03-21 08:43 +08:00 . [Mod] 使用pyproject.toml项目配置
[project]
name = "vnpy_sqlite"
dynamic = ["version"]
description = "SQLite database adapter for VeighNa quant trading framework."
readme = "README.md"
license = {text = "MIT"}
authors = [{name = "Xiaoyou Chen", email = "xiaoyou.chen@mail.vnpy.com"}]
classifiers = [
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Office/Business :: Financial :: Investment",
"Programming Language :: Python :: Implementation :: CPython",
"Natural Language :: Chinese (Simplified)",
"Typing :: Typed"
]
requires-python = ">=3.10"
dependencies = [
"peewee>=3.17.9",
]
keywords = ["quant", "quantitative", "investment", "trading", "algotrading"]
[project.urls]
"Homepage" = "https://www.vnpy.com"
"Documentation" = "https://www.vnpy.com/docs"
"Changes" = "https://github.com/vnpy/vnpy_sqlite/blob/master/CHANGELOG.md"
"Source" = "https://github.com/vnpy/vnpy_sqlite/"
"Forum" = "https://www.vnpy.com/forum"
[build-system]
requires = ["hatchling>=1.27.0"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "vnpy_sqlite/__init__.py"
pattern = "__version__ = ['\"](?P<version>[^'\"]+)['\"]"
[tool.hatch.build.targets.wheel]
packages = ["vnpy_sqlite"]
include-package-data = true
[tool.hatch.build.targets.sdist]
include = ["vnpy_sqlite*"]
[tool.ruff]
target-version = "py310"
output-format = "full"
[tool.ruff.lint]
select = [
"B", # flake8-bugbear
"E", # pycodestyle error
"F", # pyflakes
"UP", # pyupgrade
"W", # pycodestyle warning
]
ignore = ["E501"]
[tool.mypy]
python_version = "3.10"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = true
disallow_incomplete_defs = true
check_untyped_defs = true
disallow_untyped_decorators = true
no_implicit_optional = true
strict_optional = true
warn_redundant_casts = true
warn_unused_ignores = true
warn_no_return = true
ignore_missing_imports = true
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Python
1
https://gitee.com/vnpy/vnpy_sqlite.git
git@gitee.com:vnpy/vnpy_sqlite.git
vnpy
vnpy_sqlite
vnpy_sqlite
main

搜索帮助