-
Notifications
You must be signed in to change notification settings - Fork 34
/
pyproject.toml
71 lines (64 loc) · 1.63 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
65
66
67
68
69
70
71
[tool.poetry]
name = "bali-core"
version = "3.5.2"
description = ""
authors = ["Josh Yu <[email protected]>"]
license = "MIT"
readme = "README.md"
# fix package dir
packages = [{include = "bali", from = "."}]
[tool.poetry.dependencies]
python = "^3.8"
greenlet = ">1.0,<3.1"
aiomysql = ">0.1.1,<0.3"
aiosqlite = ">0.18.0,<0.20"
dateparser = ">=1.1.0"
fastapi = {version = ">=0.89.1,<0.109.2", extras = ["all"]}
fastapi-migrate = "^0.1.1"
fastapi-pagination = ">=0.9.0,<0.13"
grpcio = ">=1.39,<=1.62"
grpcio-tools = ">=1.39,<=1.62"
grpc-interceptor = "^0.15.0"
importlib-metadata = "<5.0.0"
kombu = ">=5.2.4,<6.0"
markupsafe = "^2.1.2"
pymysql = ">=0.9,<=1.0.2"
passlib = {extras = ["bcrypt"], version = "^1.7.4"}
pillow = ">=7.2.0,<11"
pydantic-sqlalchemy = ">=0.0.7,<1"
pyhumps = "^3.8.0"
pytz = "^2022.7.1"
redis = ">=3.5.3,<4.3"
regex = "^2022.10.31"
sqla-wrapper = ">=5.0.0,<5.6"
typer = ">=0.4"
environs = "^9.5.0"
[tool.poetry.group.dev.dependencies]
black = {extras = ["d"], version = "^21.12b0"}
coverage = "^7.2.1"
mkautodoc = "^0.2.0"
mkdocs-material = "^9.1.1"
pytest = ">=6.1.2,<7"
pytest-asyncio = ">=0.15.0"
pytest-cov = "^4.0.0"
pytest-grpc = "^0.8.0"
pytest-mock = "^3.10.0"
twine = "^4.0.2"
wheel = "^0.38.4"
[tool.black]
target-version = ['py38', 'py39', 'py310', 'py311', 'py312']
include = '\.pyi?$'
exclude = '''
(
/(
\.eggs # exclude a few common directories in the
| \.git # root of the project
| dist
)/
| setup.py # also separately exclude a file in
# the root of the project
)
'''
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"