-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
67 lines (63 loc) · 1.31 KB
/
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true
[scripts]
lint_flake8 = "flake8"
lint_black = "black --check --diff ."
format = "black . --exclude wheels"
manage = "python manage.py"
db_tables = "python docs/database_tables.py"
docs = "make --directory=docs clean html"
docs_rm = "rm -rf static/docs"
docs_static = "cp -R docs/_build/html static/docs"
backend = "gunicorn app.wsgi -k sync --workers=1"
worker = "python worker.py"
[dev-packages]
flake8 = "*"
flake8-print = "*"
black = "*"
[packages]
django = "*"
dj-database-url = "*"
django-tz-detect = "*"
gunicorn = "*"
whitenoise = "*"
psycopg2-binary = "*"
pandas = "<2"
numpy = "<2"
pytz = "*"
sqlalchemy = "*"
mysqlclient = "*"
feedparser = "*"
apscheduler = "*"
django-bulk-sync = "*"
sentry-sdk = "*"
spotipy = "*"
google-api-python-client = "*"
docutils = "*"
django-extensions = "*"
tabulate = "*"
rfc3986 = "*"
sphinx = "!=5.1.0"
sphinx-rtd-theme = "*"
inflection = "*"
requests = "*"
beautifulsoup4 = "*"
lxml = "*"
tenacity = "*"
loguru = "*"
solrq = "*"
cron-descriptor = "*"
pyadaptivecards = "*"
analytics-data = {file = "./wheels/analytics_data-0.7.0-py2.py3-none-any.whl"}
rq = "*"
dateparser = "*"
google-cloud-bigquery = "*"
cython = "*"
pyarrow = "*"
pyyaml = "*"
db-dtypes = "*"
mariadb = "==1.1.4"
[requires]
python_version = "3.10"