forked from olexandr-klymenko/IMDB2sql
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Pipfile
40 lines (36 loc) · 775 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
beautifulsoup4 = "*"
flask = "*"
flask-graphql = "*"
flask-migrate = "*"
flask-sqlalchemy = "*"
# graphene-sqlalchemy = "*"
# docker-compose = "*"
psutil = "*"
psycopg2-binary = "*"
pytest = "*"
pyyaml = "*"
requests = "*"
tqdm = "*"
validators = "*"
[dev-packages]
pylint = "*"
mypy = "*"
flake8 = "*"
black = "*"
ruff = "*"
types-pyyaml = "*"
types-tqdm = "*"
types-requests = "*"
types-beautifulsoup4 = "*"
[scripts]
lint = "bash -c 'pipenv run mypy && pipenv run ruff'"
lint_2 = "mypy src/ app.py run.py --install-types"
mypy = "mypy src/ app.py run.py --strict --ignore-missing-imports --warn-unreachable"
ruff = "ruff check src/ app.py run.py"
[requires]
python_version = "3.10"