-
Notifications
You must be signed in to change notification settings - Fork 31
/
pyproject.toml
64 lines (56 loc) · 1.1 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
[tool.poetry]
name = "abquant-data"
version = "0.1.0"
description = "A&B professional platform for quantitative finance. God is asking & bidding Me. ABQ."
authors = ["Jimmy M. Gong <[email protected]>"]
packages = [
{ include = "abquant" },
{ include = "abquant/**/*.py" },
]
[[tool.poetry.source]]
name = "aliyun"
url = "https://mirrors.aliyun.com/pypi/simple"
default = true
[tool.poetry.dependencies]
python = ">=3.9,<3.11"
numpy = "^1.22.2"
pandas = "^1.2.4"
click = "^7.1.2"
Logbook = "^1.5.3"
pytdx = "^1.72"
retrying = "^1.3.3"
simplejson = "^3.17.2"
pymongo = "^3.11.3"
requests = "^2.27.1"
tqdm = "^4.62.3"
[tool.poetry.dev-dependencies]
conan = "^1.58.0"
black = "^21.5b1"
pytest = "^6.2.4"
pudb = "^2021.1"
pylint = "^2.12.2"
[tool.poetry.scripts]
abquant = "abquant.cli:cli"
[build-system]
requires = ["poetry>=1.1.6"]
build-backend = "poetry.masonry.api"
[tool.black]
target-version = ['py38', 'py39', 'py310']
exclude = '''
(
asv_bench/env
| \.egg
| \.git
| \.hg
| \.mypy_cache
| \.nox
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
| setup.py
)
'''
[tool.pyright]