-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
43 lines (39 loc) · 782 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[scripts]
lint = """sh -c "
echo 'Running black' \
&& black --check . \
&& echo 'Running isort' \
&& isort --check --gitignore . \
&& echo 'Running pylint' \
&& pylint telex \
&& echo 'Running pydocstyle' \
&& pydocstyle telex \
&& echo 'Running mypy' \
&& ! mypy telex --disallow-untyped-defs --disallow-incomplete-defs | grep 'Function is missing' || false
"
"""
[packages]
dvc = "*"
jupyterlab = "*"
pandas = "*"
numexpr = "*"
bottleneck = "*"
typer = "*"
tqdm = "*"
seaborn = "*"
torch = "*"
torchvision = "*"
torchaudio = "*"
[dev-packages]
black = "*"
isort = "*"
pre-commit = "*"
pydocstyle = "*"
pylint = "*"
mypy = "*"
[requires]
python_version = "3.10"