-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
54 lines (49 loc) · 1.23 KB
/
pyproject.toml
File metadata and controls
54 lines (49 loc) · 1.23 KB
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
52
53
54
[build-system]
build-backend = "setuptools.build_meta"
requires = [ "setuptools", "wheel" ]
[project]
name = "template-python"
version = "0.1"
description = "Template python repository."
readme = "README.md"
keywords = [ "python" ]
license = { file = "LICENSE.txt" }
authors = [ { name = "Max" } ]
requires-python = ">=3.10"
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"numpy",
]
optional-dependencies.dev = [
"black[jupyter]",
"isort",
"ruff",
"template-python[test,docs]",
]
# https://medium.com/@pratikdomadiya123/build-project-documentation-quickly-with-the-sphinx-python-2a9732b66594
optional-dependencies.docs = [
"ipykernel",
"myst-parser",
"nbconvert",
"nbsphinx",
"jupyterlab",
"linkify-it-py",
"pre-commit",
"pyproject-fmt",
"sphinx",
"sphinx-book-theme",
"sphinxcontrib-mermaid",
"sphinx-design",
]
optional-dependencies.test = [ "coverage", "pytest" ]
urls."Source" = "https://github.com/max-models/template-python"
scripts.template-python = "app.main:main"
[tool.setuptools.packages.find]
where = [ "src" ]
[tool.isort]
profile = "black"