-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathPipfile
More file actions
37 lines (32 loc) · 714 Bytes
/
Pipfile
File metadata and controls
37 lines (32 loc) · 714 Bytes
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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
[packages]
loguru = "==0.5.3"
typer = "==0.6.1"
requests = "==2.28.1"
pydantic = {extras = ["dotenv"], version = "==1.8.2"}
pyyaml = "==6.0"
meilisearch = "==0.19.1"
markdown = "==3.4.1"
[dev-packages]
mypy = "==0.910"
pylint = "==2.9.6"
isort = "==5.10.1"
black = "==22.6.0"
invoke = "==1.6.0"
flake8 = "==3.9.2"
pytest = "==6.2.4"
types-pyyaml = "==5.4.6"
types-requests = "==2.28.9"
types-markdown = "==3.4.1"
[requires]
python_version = "3.10"
[scripts]
sync_all_notes="python3 app/main.py sync_all_notes"
build_index="python3 app/main.py build_index"
lint = "inv lint"
reformat = "inv reformat"
[pipenv]
allow_prereleases = true