-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
51 lines (46 loc) · 1.16 KB
/
pyproject.toml
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
44
45
46
47
48
49
50
51
[project]
dependencies = [
"Flask>=3.0.0",
"Jinja2>=3.1.0",
"python-dotenv>=1.0.0",
"waitress>=2.1.2",
"Flask-SQLAlchemy>=3.1.1",
"psycopg2-binary>=2.9.9",
"Flask-Migrate>=4.0.0",
"Flask-Marshmallow>=0.15.0",
"Flask-Login>=0.6.3",
"Flask-Assets>=2.1.0",
"Flask-Caching>=2.1.0",
"flask-swagger-ui>=4.11.0",
"marshmallow-sqlalchemy>=0.29.0",
"requests>=2.31.0",
"cuid2>=2.0.0",
"redis>=5.0.0",
"pytest>=7.4.3",
"pytest-xdist>=3.5.0",
"coverage>=7.3.4",
"cssmin",
"jsmin",
]
name = "cursus"
version = "0.0.9"
description = "An open-source API repository for university courses."
license = { file = "LICENSE" }
authors = [{ name = "Richard H Nguyen", email = "richard@richardhnguyen.com" }]
requires-python = ">=3.11.0"
[project.scripts]
cursus = "manage:cli"
[build-system]
requires = ["flit_core<4"]
build-backend = "flit_core.buildapi"
[tool.pytest.ini_options]
testpaths = ["test"]
markers = ["config", "swjs", "robots", "images", "after_request"]
[tool.coverage.run]
branch = true
source = ["cursus"]
# For black formatter
[tool.black]
line-length = 79
target-version = ["py311"]
include = '\.pyi?$'