62 Star 283 Fork 167

bopo / mootdx

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
pyproject.toml 2.24 KB
一键复制 编辑 原始数据 按行查看 历史
bopo 提交于 2024-03-10 12:34 . bump: version 0.11.3 → 0.11.4
[tool.poetry]
name = "mootdx"
version = "0.11.4"
description = "通达信数据读取接口."
authors = ["bopo <ibopo@126.com>"]
readme = "README.md"
license = "MIT license"
homepage = "https://www.mootdx.com"
repository = "https://github.com/mootdx/mootdx"
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
]
[tool.poetry.scripts]
mootdx = "mootdx.__main__:entry"
[tool.poetry.dependencies]
python = "^3.8"
httpx = {extras = ["socks"], version = "^0.25.0"}
tenacity = "^8.1.0"
tdxpy = "^0.2.5"
tqdm = "*"
py-mini-racer = { version = "^0.6.0", optional = true }
prettytable = { version = "^3.5.0", optional = true }
click = { version = "^8.1.3", optional = true }
typing-extensions = "^4.5.0"
[tool.poetry.extras]
fetch = ["py-mini-racer"]
cli = ["prettytable", "click"]
all = ["prettytable", "click", "py-mini-racer"]
[tool.poetry.group.test.dependencies]
pytest-cov = "^4.0.0"
freezegun = "^1.2.2"
pytest = "^7.3.1"
[[tool.poetry.source]]
name = "mirrors"
url = "https://mirrors.ustc.edu.cn/pypi/web/simple"
priority = "default"
[[tool.poetry.source]]
name = "PyPI"
priority = "explicit"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.pytest.ini_options]
testpaths = "tests"
addopts = "-p no:warnings"
log_cli = 0
log_cli_level = "DEBUG"
[tool.commitizen]
tag_format = "v$version"
annotated_tag = true
changelog_file = "docs/history.md"
changelog_incremental = true
update_changelog_on_bump = true
version_provider = "poetry"
version_files = [
"mootdx/__init__.py:__version__",
]
[tool.poe.tasks]
venv = "poetry install --sync"
lock = "poetry lock --no-update"
test = "poetry run pytest"
lint = "ruff check ./mootdx/*.py"
dist = "poetry build -v"
bump = "cz bump --yes -ch -cc --increment"
sync = "make sync"
pypi = "poetry publish --build --skip-existing"
#{MAJOR,MINOR,PATCH}
Python
1
https://gitee.com/ibopo/mootdx.git
git@gitee.com:ibopo/mootdx.git
ibopo
mootdx
mootdx
master

搜索帮助