-
Notifications
You must be signed in to change notification settings - Fork 16
/
Copy pathPipfile
52 lines (49 loc) · 928 Bytes
/
Pipfile
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
watchdog = "*"
redis = "*"
tuf = "*"
dynaconf = {extras = ["ini"], version = "*"}
supervisor = "*"
securesystemslib = "*"
sqlalchemy = "*"
psycopg2 = "*"
alembic = "*"
pydantic = "*"
celery = "*"
boto3 = "*"
awswrangler = "*"
sigstore = "*"
pymysql = "*"
google-cloud-kms = "*"
rsa = "4.8" # required to solve conflict with awscli
[dev-packages]
tox = "*"
flake8 = "*"
coverage = "*"
black = "*"
isort = "*"
mypy = "*"
pytest = "*"
pytest-cov = "*"
pytest-xdist = "*"
pretend = "*"
virtualenv = "*"
sphinx-rtd-theme = "*"
sphinx = "*"
sphinxcontrib-applehelp = "*"
sphinxcontrib-devhelp = "*"
sphinxcontrib-htmlhelp = "*"
sphinxcontrib-jsmath = "*"
sphinxcontrib-plantuml = "*"
sphinxcontrib-qthelp = "*"
sphinxcontrib-serializinghtml = "*"
pre-commit = "*"
bandit = "*"
awscli-local = "*"
awscli = "*"
[requires]
python_version = "3.12"