|
1 | 1 | [project] |
2 | | -name = "Python4DataScience" |
| 2 | +name = "python4datascience" |
3 | 3 | version = "24.2.0" |
4 | | -authors = [ |
5 | | - { name="Veit Schiele", email="veit@cusy.io" }, |
6 | | -] |
7 | 4 | description = "Teaching materials for the cusy training courses on Python-based data science workflows: https://cusy.io/en/seminars" |
8 | 5 | readme = "README.rst" |
| 6 | +authors = [ |
| 7 | + { name = "Veit Schiele", email = "veit@cusy.io" }, |
| 8 | +] |
9 | 9 | requires-python = ">=3.9" |
10 | 10 | classifiers = [ |
11 | | - "Programming Language :: Python :: 3", |
12 | | - "License :: OSI Approved :: BSD License", |
13 | | - "Operating System :: OS Independent", |
| 11 | + "License :: OSI Approved :: BSD License", |
| 12 | + "Operating System :: OS Independent", |
| 13 | + "Programming Language :: Python :: 3 :: Only", |
| 14 | + "Programming Language :: Python :: 3.9", |
| 15 | + "Programming Language :: Python :: 3.10", |
| 16 | + "Programming Language :: Python :: 3.11", |
| 17 | + "Programming Language :: Python :: 3.12", |
| 18 | + "Programming Language :: Python :: 3.13", |
14 | 19 | ] |
15 | | -dependencies = [] |
| 20 | +dependencies = [ ] |
16 | 21 |
|
17 | | -[dependency-groups] |
18 | | -docs = [ |
19 | | - "furo", |
20 | | - "ipython", |
21 | | - "ipywidgets", |
22 | | - "matplotlib", |
23 | | - "nbsphinx", |
24 | | - "notebook", |
25 | | - "sphinx<8.2", |
26 | | - "sphinx-copybutton", |
27 | | - "sphinx-lint", |
28 | | - "sphinx-notfound-page", |
29 | | - "sphinx-sitemap", |
30 | | - "sphinx_inline_tabs", |
31 | | - "sphinxcontrib-svg2pdfconverter", |
32 | | - "sphinxext.opengraph", # matplotlib is required for social cards |
33 | | -] |
| 22 | +urls."Bug Tracker" = "https://github.com/cusyio/Python4DataScience/issues" |
| 23 | +urls."Homepage" = "https://github.com/cusyio/Python4DataScience/" |
34 | 24 |
|
| 25 | +[dependency-groups] |
35 | 26 | dev = [ |
36 | | - { include-group = "docs" }, |
37 | | - "pre-commit", |
38 | | - "codespell", |
39 | | - "vale", |
| 27 | + "codespell", |
| 28 | + "pre-commit", |
| 29 | + "reuse>=5.0.2", |
| 30 | + "vale", |
| 31 | + { include-group = "docs" }, |
| 32 | +] |
| 33 | +docs = [ |
| 34 | + "furo", |
| 35 | + "ipython", |
| 36 | + "ipywidgets", |
| 37 | + "matplotlib", |
| 38 | + "nbsphinx", |
| 39 | + "notebook", |
| 40 | + "sphinx<8.2", |
| 41 | + "sphinx-copybutton", |
| 42 | + "sphinx-inline-tabs", |
| 43 | + "sphinx-lint", |
| 44 | + "sphinx-notfound-page", |
| 45 | + "sphinx-sitemap", |
| 46 | + "sphinxcontrib-svg2pdfconverter", |
| 47 | + "sphinxext-opengraph", # matplotlib is required for social cards |
40 | 48 | ] |
41 | | - |
42 | | -[project.urls] |
43 | | -"Homepage" = "https://github.com/cusyio/Python4DataScience/" |
44 | | -"Bug Tracker" = "https://github.com/cusyio/Python4DataScience/issues" |
45 | 49 |
|
46 | 50 | [tool.setuptools] |
47 | | -packages = [] |
| 51 | +packages = [ ] |
48 | 52 |
|
49 | 53 | [tool.codespell] |
50 | 54 | skip = "*.csv, *.html, *.pdf, *.ipynb, ./docs/_build/*, ./styles/*" |
|
0 commit comments