-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathpyproject.toml
36 lines (32 loc) · 1014 Bytes
/
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
[project]
name = "comp0034-wk4"
version = "1.0.0"
description = "Paralympics testing activities"
dependencies = [
"flask",
"Flask-SQLAlchemy",
"Flask-Marshmallow",
"marshmallow-sqlalchemy",
"pandas",
"pytest",
"pyarrow"
]
# https://setuptools.pypa.io/en/latest/userguide/pyproject_config.html
[build-system]
requires = [
"setuptools",
"setuptools-scm",
]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
include = ["paralympics*"] # package names should match these glob patterns (["*"] by default)
exclude = ["tests*"] # exclude packages matching these glob patterns (empty by default)
namespaces = false # to disable scanning PEP 420 namespaces (true by default)
# https://docs.pytest.org/en/stable/reference/customize.html#pyproject-toml
[tool.pytest.ini_options]
addopts = "--verbose"
testpaths = ["tests"]
# https://flask.palletsprojects.com/en/2.3.x/tutorial/tests/#running-the-tests
[tool.coverage.run]
branch = true
source = ["paralympics"]