-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPipfile
31 lines (27 loc) · 747 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
[[source]]
url = "https://pypi.org/simple"
verify_ssl = true
name = "pypi"
PIPENV_VENV_IN_PROJECT = 1
[scripts]
dev = "fastapi dev main.py"
start = "fastapi run main.py"
colorize = "python colorize_svg.py" # make sure to run this in a sh, bash or zsh shell
# dev = "uvicorn main:app --reload"
# start = "uvicorn main:app"
# test = "pytest"
lint = "ruff check"
[packages]
requests = "==2.32.3"
uvicorn = {extras = ["standard"], version = "0.115.6"}
# pytest = "==8.3.3"
httpx = "==0.28.0"
ruff = "==0.8.1"
# fastapi-analytics = "==1.2.2"
python-dotenv = "==1.0.1"
pydantic-settings = "==2.6.1"
fastapi = {extras = ["standard"], version = "*"}
sentry-sdk = {extras = ["fastapi"], version = "*"}
[dev-packages]
[requires]
python_version = "3.10"