-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
57 lines (51 loc) · 1.09 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
[tool.poetry]
name = "paperplane"
version = "0.3.1"
description = "金牛智道的智能模拟炒股后台"
authors = ["邱承 <[email protected]>"]
[[tool.poetry.source]]
name = 'tsinghua'
url = 'https://pypi.tuna.tsinghua.edu.cn/simple'
default = true
[tool.poetry.dependencies]
python = "^3.7"
fastapi = ">=0.42.0"
pytdx = "^1.72"
python-dotenv = "^0.10.3"
uvicorn = "^0.9.0"
motor = "^2.0"
email-validator = "^1.0"
bs4 = "^0.0.1"
tushare = "^1.2"
lxml = "^4.4"
ujson = "^1.35"
[tool.poetry.dev-dependencies]
mkdocs = "^1.0"
mkdocs-material = "^4.4"
requests = "^2.22"
pytest = "^5.2"
[tool.black]
line-length = 160
target-version = ['py37']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
| foo.py # also separately exclude a file named foo.py in
# the root of the project
)
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"