-
Notifications
You must be signed in to change notification settings - Fork 38
/
Copy pathpyproject.toml
64 lines (54 loc) · 996 Bytes
/
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
[tool.poetry]
name = "silverhand"
version = "0.1.0"
description = ""
authors = [
"twocucao <[email protected]>",
]
[[tool.poetry.source]]
name = "aliyun"
url = 'https://mirrors.aliyun.com/pypi/simple/'
default = true
[tool.poetry.dependencies]
python = "^3.9"
flask = "^1.0"
pyjwt = "^1.7"
flask_sqlalchemy = "^2.3"
flask_migrate = "^2.3"
python-dotenv = "^0.10.1"
ipython = "^7.2"
pyyaml = "^5.2"
voluptuous = "^0.11.7"
pydantic = "^1.7.3"
graphql-server = "^3.0.0-beta.3"
orjson = "^3.4.6"
devtools = "^0.6.1"
jupyter = "^1.0.0"
pandas = "^1.1.5"
openpyxl = "^3.0.5"
[tool.poetry.dev-dependencies]
mypy_extensions = "^0.4.3"
pytest = "^5.3.2"
flake8 = "^3.7"
fabric = "^2.4"
sqlalchemy-stubs = "^0.3.0"
black = "^19.10b0"
mypy = "^0.761"
[tool.black]
target-version = ['py38']
exclude = '''
/(
\.git
| \.hg
| \.mypy_cache
| \.tox
| \.venv
| _build
| buck-out
| build
| dist
)/
'''
[build-system]
requires = ["poetry>=0.12"]
build-backend = "poetry.masonry.api"