Skip to content

Commit 5734714

Browse files
committed
Add requirements
1 parent 5388d71 commit 5734714

File tree

4 files changed

+28
-3
lines changed

4 files changed

+28
-3
lines changed

requirements-dev.txt

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
-r src/requirements.txt
2+
3+
# Testing Tools
4+
pytest
5+
ephemeral-port-reserve
6+
coverage
7+
pytest-cov
8+
9+
# Linters
10+
ruff
11+
black

requirements.txt

-3
This file was deleted.

src/pyproject.toml

+15
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[project]
2+
name = "flaskapp"
3+
version = "1.0.0"
4+
description = "API for Managing test cases and their execution results across multiple test assets, with data stored in a SQLite database."
5+
dependencies = [
6+
"Flask==2.3.2",
7+
"SQLAlchemy==2.0.17",
8+
"Flask-Migrate==4.0.4",
9+
"Flask-SQLAlchemy==3.1.1",
10+
"mysql-connector-python==8.3.0",
11+
]
12+
13+
[build-system]
14+
requires = ["flit_core<4"]
15+
build-backend = "flit_core.buildapi"

src/requirements.txt

+2
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
# global requirements
2+
gunicorn==20.1.0

0 commit comments

Comments
 (0)