-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (35 loc) · 912 Bytes
/
Copy pathpyproject.toml
File metadata and controls
40 lines (35 loc) · 912 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python_template_apolon"
authors = [
{email = "john_doe@github.com", name = "John Doe"},
]
description = "Python Template"
readme = "README.md"
requires-python = ">=3.11, <=3.12"
dependencies = [
"h5py",
]
#license = {text = "MIT"}
license = {file = "LICENSE"}
version = '0.1.0'
[project.optional-dependencies]
dev = [
"black",
#"docstr-coverage",
#"docutils<0.18,>=0.14",
"flake8",
"pdbp",
"pytest==8.3.3",
"pytest-cov==5.0.0",
"pdoc",
]
[project.urls]
Documentation = "https://atpolonsky.github.io/python_template/docs/userguide/book/index.html"
Repository = "https://github.com/atpolonsky/python_template"
# CLI Entry Points
# https://setuptools.pypa.io/en/latest/userguide/entry_point.html
[project.scripts]
#hello="python_template.command_line:hello"