-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathPipfile
51 lines (48 loc) · 937 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[dev-packages]
pycodestyle = "*"
pylint = "*"
flake8 = "*"
coverage = "*"
Flask-Testing = "*"
isort = "*"
ipdb = "*"
ipython = "*"
mypy = "*"
types-redis = "*"
types-requests = "*"
types-python-dateutil = "*"
types-mock = "*"
SQLAlchemy = {extras = ["mypy"]}
black = "*"
pytest = "*"
pytest-cov = "*"
[packages]
advocate = "==1.*"
alembic = "==1.*"
"beautifulsoup4" = "==4.*"
blinker = "==1.*"
celery = "==5.*"
feedparser = "==6.*"
flask = "==3.*"
flask-cors = "*"
flask-jwt-extended = "==4.*"
flask-migrate = "==4.*"
flask-restx = "==1.*"
goose3 = "==3.*"
gunicorn = "==22.*"
json-logging-py = "*" # needed by gunicorn config
opml = "==0.*"
prometheus-distributed-client = "==1.*"
psycopg2-binary = "==2.*"
python-dateutil = "*"
rauth = "==0.7.3"
redis = "==5.*"
requests = "==2.*"
SQLAlchemy = "==2.*"
the-conf = "==0.*"
[requires]
python_version = "3.12"