forked from cusyio/Python4DataScience
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
48 lines (43 loc) · 1.2 KB
/
Copy pathpyproject.toml
File metadata and controls
48 lines (43 loc) · 1.2 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
[project]
name = "Python4DataScience"
version = "24.2.0"
authors = [
{ name="Veit Schiele", email="veit@cusy.io" },
]
description = "Teaching materials for the cusy training courses on Python-based data science workflows: https://cusy.io/en/seminars"
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
]
dependencies = []
[project.optional-dependencies]
docs = [
"sphinx<8.2",
"furo",
"ipython",
"ipywidgets",
"nbsphinx",
"sphinxcontrib-svg2pdfconverter",
"sphinxext.opengraph", # matplotlib is required for social cards
"matplotlib",
"sphinx-copybutton",
"sphinx_inline_tabs",
"sphinx-lint",
]
dev = [
"Python4DataScience[docs]",
"pre-commit",
"codespell",
"vale",
]
[project.urls]
"Homepage" = "https://github.com/cusyio/Python4DataScience/"
"Bug Tracker" = "https://github.com/cusyio/Python4DataScience/issues"
[tool.setuptools]
packages = []
[tool.codespell]
skip = "*.csv, *.pdf, *.ipynb, ./docs/_build/*, ./styles/*"
ignore-words-list = "AAS, ans, comit, fo, Groth, Ned, Redict, redict, reStructedText, splitted"