fa45d8aa5f
- health_checklist.json: 192.168.1.122→node122
- ocr_client.py: docstring IP→node122
- docs/market-data-requirements.md: IP→node122
- 所有API调用通过ProxyHandler({})绕过系统代理
Privoxy对node122:18003返回500,直连正常
35 lines
1.1 KiB
TOML
35 lines
1.1 KiB
TOML
[build-system]
|
|
requires = ["setuptools>=42", "wheel"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "efinance"
|
|
version = "0.5.8"
|
|
description = "A finance tool to get stock,fund and futures data base on eastmoney"
|
|
readme = "README.md"
|
|
authors = [{ name = "micro sheep", email = "micro-sheep@outlook.com" }]
|
|
license = { text = "MIT" }
|
|
classifiers = [
|
|
"License :: OSI Approved :: MIT License",
|
|
"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",
|
|
"Programming Language :: Python :: 3.12",
|
|
]
|
|
keywords = ["finance", "quant", "stock", "fund", "futures"]
|
|
dynamic = ["dependencies"]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/Micro-sheep/efinance"
|
|
Documentation = "https://efinance.readthedocs.io"
|
|
Source = "https://github.com/Micro-sheep/efinance"
|
|
|
|
[tool.setuptools]
|
|
packages = { find = { where = ["."], include = ["efinance*"] } }
|
|
|
|
[tool.setuptools.dynamic]
|
|
dependencies = { file = ["requirements.txt"] }
|