-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
63 lines (59 loc) · 1.59 KB
/
pyproject.toml
File metadata and controls
63 lines (59 loc) · 1.59 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
55
56
57
58
59
60
61
62
63
# SPDX-FileCopyrightText: 2020 Veit Schiele
#
# SPDX-License-Identifier: BSD-3-Clause
[project]
name = "python4datascience"
version = "24.2.0"
description = "Teaching materials for the cusy training courses on Python-based data science workflows: https://cusy.io/en/seminars"
readme = "README.rst"
license = "BSD-3-Clause"
license-files = [ "LICENSE" ]
authors = [
{ name = "Veit Schiele", email = "veit@cusy.io" },
]
requires-python = ">=3.10"
classifiers = [
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
]
dependencies = []
urls."Bug Tracker" = "https://github.com/cusyio/Python4DataScience/issues"
urls.Homepage = "https://github.com/cusyio/Python4DataScience/"
[dependency-groups]
dev = [
"codespell",
"pre-commit",
"vale",
{ include-group = "docs" },
]
docs = [
"furo",
"ipython",
"ipywidgets",
"matplotlib",
"nbsphinx",
"notebook",
"sphinx",
"sphinx-copybutton",
"sphinx-inline-tabs",
"sphinx-lint",
"sphinx-notfound-page",
"sphinx-sitemap",
"sphinxcontrib-svg2pdfconverter",
"sphinxext-opengraph", # matplotlib is required for social cards
]
[tool.setuptools]
packages = []
[tool.black]
line-length = 79
[tool.codespell]
skip = """\
*.csv, *.html, *.pdf, *.rst, *.ipynb, ./docs/_build/*, */books.json, */books.txt, ./styles/*, \
./Python4DataScience.egg-info/*\
"""
ignore-words-list = "comit"