forked from pgadmin-org/pgadmin4
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
119 lines (112 loc) · 3.02 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
[tool.poetry]
name = "pgadmin"
version = "0.1.0"
description = ""
authors = ["zzz <[email protected]>"]
readme = "README.md"
[[tool.poetry.source]]
name = "tsinghua"
# https://pypi.doubanio.com/simple/
# https://mirrors.163.com/pypi/simple/
# https://mirrors.aliyun.com/pypi/simple/
# https://pypi.tuna.tsinghua.edu.cn/simple/
url = "https://pypi.tuna.tsinghua.edu.cn/simple/"
priority = "default"
[tool.poetry.dependencies]
python = "^3.9"
flask = "==2.2.*"
flask-gravatar = "==0.*"
flask-login = "==0.*"
flask-mail = "==0.*"
flask-migrate = "==4.*"
greenlet = {version = "1.1.2", markers = "python_version <= \"3.10\""}
flask-sqlalchemy = "==3.0.*"
flask-wtf = "1.1.1"
flask-compress = "==1.*"
flask-paranoid = "==0.*"
flask-babel = "==3.1.*"
flask-security-too = "==5.1.*"
flask-socketio = "==5.3.*"
wtforms = "==3.0.*"
passlib = "==1.*"
pytz = "==2023.*"
speaklater3 = "==1.*"
sqlparse = "==0.*"
psutil = "==5.9.*"
psycopg = {version = "3.1.8", extras = ["binary"]}
python-dateutil = "==2.*"
sqlalchemy = "==2.*"
bcrypt = "==4.0.*"
cryptography = "==40.0.*"
sshtunnel = "==0.*"
ldap3 = "==2.*"
gssapi = "==1.8.*"
eventlet = "0.33.3"
httpagentparser = "==1.9.*"
user-agents = "2.2.0"
authlib = "==1.2.*"
requests = "==2.30.*"
pyotp = "==2.*"
qrcode = "==7.*"
pillow = "==9.*"
boto3 = "==1.26.*"
botocore = "==1.29.*"
urllib3 = "==1.26.*"
azure-mgmt-rdbms = "10.1.0"
azure-mgmt-resource = "23.0.0"
azure-mgmt-subscription = "3.1.1"
azure-identity = "1.13.0"
google-api-python-client = "==2.*"
google-auth-oauthlib = "1.0.0"
werkzeug = "2.2.3"
keyring = "==23.*"
sphinx = "^7.0.1"
sphinxcontrib-youtube = "^1.2.0"
# Optional deps
extras = { version = ">=1.0.0", optional = true }
fixtures = { version = ">=4.1.0", optional = true }
linecache2 = { version = ">=1.0.0", optional = true }
pbr = { version = ">=5.11.1", optional = true }
pycodestyle = { version = ">=2.5.0", optional = true }
python-mimeparse = { version = ">=1.6.0", optional = true }
testscenarios = { version = ">=0.5.0", optional = true }
testtools = { version = ">=2.6.0", optional = true }
traceback2 = { version = ">=1.4.0", optional = true }
selenium = { version = ">=4.10.0", optional = true }
coverage = { version = ">=7.2.7", optional = true }
[tool.poetry.extras]
# NB: Packages that should be part of `poetry install -E` need to be specified
extras = ["extras"]
fixtures = ["fixtures"]
linecache2 = ["linecache2"]
pbr = ["pbr"]
pycodestyle = ["pycodestyle"]
python-mimeparse = ["python-mimeparse"]
testscenarios = ["testscenarios"]
testtools = ["testtools"]
traceback2 = ["traceback2"]
selenium = ["selenium"]
coverage = ["coverage"]
all = [
"extras",
"fixtures",
"linecache2",
"pbr",
"pycodestyle",
"python-mimeparse",
"testscenarios",
"testtools",
"traceback2",
"selenium",
"coverage"
]
[tool.poetry.dev-dependencies]
## We pin black so that our tests don't start failing on new releases.
isort = ">=5.10.1"
black = ">=22.3.0"
flake8-comprehensions = "*"
flake8-bugbear = ">=21.3.2"
flake8 = "*"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"