Skip to content

Commit 28f1076

Browse files
build: adding uv support
creating uv files renaming dev_requirements to requirements_dev
1 parent 07e630a commit 28f1076

File tree

5 files changed

+579
-0
lines changed

5 files changed

+579
-0
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@
44
# enviroment
55
__pycache__
66
.env
7+
.python-version
78

89
# testing
910
.coverage

pyproject.toml

Lines changed: 41 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,41 @@
1+
[project]
2+
name = "flask-boilerplate"
3+
version = "0.1.0"
4+
description = "Add your description here"
5+
readme = "README.md"
6+
requires-python = ">=3.11"
7+
dependencies = [
8+
"alembic==1.13.1",
9+
"blinker==1.7.0",
10+
"click==8.1.7",
11+
"colorama==0.4.6",
12+
"flask==3.0.2",
13+
"flask-marshmallow==1.2.0",
14+
"flask-migrate==4.0.5",
15+
"flask-sqlalchemy==3.1.1",
16+
"greenlet==3.1.1",
17+
"gunicorn==21.2.0",
18+
"iniconfig==2.0.0",
19+
"itsdangerous==2.1.2",
20+
"jinja2==3.1.3",
21+
"mako==1.3.2",
22+
"markupsafe==2.1.5",
23+
"marshmallow==3.20.2",
24+
"marshmallow-sqlalchemy==1.0.0",
25+
"mccabe==0.7.0",
26+
"packaging==23.2",
27+
"pluggy==1.4.0",
28+
"python-dotenv==1.0.1",
29+
"sqlalchemy==2.0.27",
30+
"typing-extensions==4.9.0",
31+
"werkzeug==3.0.1",
32+
]
33+
34+
[dependency-groups]
35+
dev = [
36+
"coverage==7.4.3",
37+
"flake8==7.0.0",
38+
"pycodestyle==2.11.1",
39+
"pyflakes==3.2.0",
40+
"pytest==8.0.0",
41+
]

requirements.txt

0 Bytes
Binary file not shown.
File renamed without changes.

0 commit comments

Comments
 (0)