generated from RasmussenLab/python_package
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
46 lines (41 loc) · 1.22 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
42
43
44
45
46
[project]
authors = [
{ name = "Henry Webel", email = "[email protected]" },
]
description = "Pandas related custom functions for data analysis."
name = "dsp_pandas"
# This means: Load the version from the package itself.
# See the section below: [tools.setuptools.dynamic]
dynamic = ["version"]
readme = "README.md"
# We use features for Python 3.11, so we test it here.
requires-python = ">=3.9"
# These are keywords
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = ["pandas", "openpyxl"]
[project.urls]
"Bug Tracker" = "https://github.com/biosustain/dsp_pandas/issues"
"Homepage" = "https://github.com/biosustain/dsp_pandas"
[project.optional-dependencies]
docs = [
"sphinx",
"sphinx-book-theme",
"myst-nb",
"ipywidgets",
"sphinx-new-tab-link!=0.2.2",
"jupytext",
]
dev = ["black", "ruff", "pytest"]
# Configure the Ruff linter: Ignore error number 501
[tool.ruff]
lint.ignore = ["E501"]
[build-system]
build-backend = "setuptools.build_meta"
requires = ["setuptools>=64", "setuptools_scm>=8"]
[tool.setuptools_scm]
# https://setuptools-scm.readthedocs.io/
# used to pick up the version from the git tags or the latest commit.