-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
34 lines (28 loc) · 1.14 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
[tool.pytest.ini_options]
pythonpath = "src"
addopts = [
"--import-mode=importlib",
]
[build-system]
requires = ["setuptools>=64", "setuptools_scm>=8"]
[project]
name = "REPLACEME_PROJECT_NAME"
description = "REPLACEME_PROJECT_DESCRIPTION"
readme = {file = "README.md", content-type = "text/markdown"}
maintainers = [{name = "REPLACEME_YOUR_NAME", email = "REPLACEME_YOUR_EMAIL@example.com"}]
dynamic = ["version"]
requires-python = ">= 3.10"
dependencies = [] # Add runtime dependencies as a list
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
]
[project.urls]
Homepage = "https://REPLACEME_YOUR_USERNAME.github.io/REPLACEME_YOUR_REPO/"
Documentation = "https://REPLACEME_YOUR_USERNAME.github.io/REPLACEME_YOUR_REPO/"
Repository = "https://github.com/REPLACEME_YOUR_USERNAME/REPLACEME_YOUR_REPO"
Issues = "https://github.com/REPLACEME_YOUR_USERNAME/REPLACEME_YOUR_REPO/issues"
[tool.setuptools_scm]
version_scheme = "no-guess-dev"
version_file = "_version.py"