Skip to content
This repository was archived by the owner on Apr 9, 2025. It is now read-only.

Commit 8765043

Browse files
authored
Merge pull request #8 from reichlab/bsweger/minor-improvements
Bsweger/minor improvements
2 parents 947022e + 2d4c1f8 commit 8765043

File tree

1 file changed

+10
-1
lines changed

1 file changed

+10
-1
lines changed

pyproject.toml

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ name = "reichlab-python-template"
33
description = "Python template for Reich Lab projects"
44
license = {text = "MIT License"}
55
readme = "README.md"
6-
requires-python = '>=3.10'
6+
requires-python = ">=3.9"
77
classifiers = [
88
"Programming Language :: Python :: 3",
99
"License :: OSI Approved :: MIT License",
@@ -27,13 +27,22 @@ dev = [
2727
"types-toml",
2828
]
2929

30+
[project.urls]
31+
Repository = "https://github.com/reichlab/reichlab-python-template.git"
32+
3033
[project.entry-points."console_scripts"]
3134
reichlab_python_template = "reichlab_python_template.app:main"
3235

3336
[build-system]
3437
# Minimum requirements for the build system to execute.
3538
requires = ["setuptools", "wheel"]
3639

40+
[tool.pytest.ini_options]
41+
tmp_path_retention_policy = "none"
42+
testpaths = [
43+
"tests",
44+
]
45+
3746
[tools.setuptools]
3847
packages = ["reichlab_python_template"]
3948

0 commit comments

Comments
 (0)