|
1 | 1 | [build-system]
|
2 |
| -requires = ["hatchling"] |
| 2 | +requires = ["hatchling", "hatch-vcs"] |
3 | 3 | build-backend = "hatchling.build"
|
4 | 4 |
|
5 | 5 | [project]
|
6 | 6 | name = "graphviz-anywidget"
|
7 |
| -version = "0.0.0" |
| 7 | +description = "Interactive Graphviz visualization widget for Jupyter notebooks using anywidget." |
| 8 | +requires-python = ">=3.10" |
| 9 | +dynamic = ["version"] |
| 10 | +maintainers = [{ name = "Bas Nijholt", email = "bas@nijho.lt" }] |
| 11 | +license = { text = "MIT" } |
8 | 12 | dependencies = ["anywidget"]
|
9 |
| -readme = "README.md" |
| 13 | +classifiers = [ |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "Intended Audience :: Science/Research", |
| 16 | + "License :: OSI Approved :: MIT License", |
| 17 | + "Operating System :: OS Independent", |
| 18 | + "Programming Language :: Python", |
| 19 | + "Programming Language :: Python :: 3", |
| 20 | + "Programming Language :: Python :: 3.10", |
| 21 | + "Programming Language :: Python :: 3.11", |
| 22 | + "Programming Language :: Python :: 3.12", |
| 23 | + "Programming Language :: Python :: 3.13", |
| 24 | +] |
| 25 | + |
| 26 | +[project.readme] |
| 27 | +content-type = "text/markdown" |
| 28 | +file = "README.md" |
| 29 | + |
| 30 | +[project.urls] |
| 31 | +homepage = "https://github.com/pipefunc/graphviz-anywidget" |
| 32 | +documentation = "htthttps://github.com/pipefunc/graphviz-anywidget" |
| 33 | +repository = "https://github.com/pipefunc/graphviz-anywidget" |
10 | 34 |
|
11 |
| -# For projects not using `uv`, you can install these development dependencies with: |
12 |
| -# `pip install -e ".[dev]"` |
13 |
| -# If you're using `uv` for development, feel free to remove this section. |
14 | 35 | [project.optional-dependencies]
|
15 | 36 | dev = ["watchfiles", "jupyterlab", "pytest"]
|
16 | 37 |
|
|
0 commit comments