-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
41 lines (39 loc) · 1.06 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
35
36
37
38
39
40
41
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "python_pkg_tmpl"
version = "0.0.1"
authors = [
{ name="SECORO AG", email="[email protected]" }
]
description = """
A template Python package.
"""
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License"
]
dependencies = [
"platformdirs",
]
[project.optional-dependencies]
test = [
"pytest",
]
docs = [
"pathlib", # API generation script
"mkdocs-material", # material theme
"mkdocs-awesome-pages-plugin", # allow short hands for loading all markdowns
"mkdocstrings[python]", # render API pages for Python
"mkdocs-literate-nav", # summary API page
"mkdocs-gen-files", # generate API files
"mkdocs-section-index", # generate index for API
]
[project.urls]
"Homepage" = "https://github.com/secorolab/python-pkg-template"
[tool.ruff]
line-length = 100