|
| 1 | +[build-system] |
| 2 | +build-backend = "hatchling.build" |
| 3 | +requires = ["hatchling>=1.5.0,<2"] |
| 4 | + |
| 5 | +[project] |
| 6 | +classifiers = [ |
| 7 | + "Framework :: Jupyter", |
| 8 | + "Framework :: Jupyter :: JupyterLab", |
| 9 | + "Framework :: Jupyter :: JupyterLab :: 4", |
| 10 | + "Framework :: Jupyter :: JupyterLab :: Extensions", |
| 11 | + "Framework :: Jupyter :: JupyterLab :: Extensions :: Prebuilt", |
| 12 | + "License :: OSI Approved :: BSD License", |
| 13 | + "Programming Language :: Python", |
| 14 | + "Programming Language :: Python :: 3", |
| 15 | + "Programming Language :: Python :: 3.8", |
| 16 | + "Programming Language :: Python :: 3.9", |
| 17 | + "Programming Language :: Python :: 3.10", |
| 18 | + "Programming Language :: Python :: 3.11", |
| 19 | + "Programming Language :: Python :: 3.12", |
| 20 | +] |
| 21 | +dependencies = [ |
| 22 | + "jupytercad_core==3.0.1", |
| 23 | + "jupytercad_lab==3.0.1", |
| 24 | + "my-jupyter-shared-drive", |
| 25 | +] |
| 26 | +dynamic = ["version"] |
| 27 | +license = {file = "LICENSE"} |
| 28 | +name = "jupytercad-lite" |
| 29 | +readme = "README.md" |
| 30 | +requires-python = ">=3.10" |
| 31 | + |
| 32 | + |
| 33 | +[tool.hatch.version] |
| 34 | +path = "jupytercad/__init__.py" |
| 35 | + |
| 36 | +[tool.hatch.build.targets.wheel] |
| 37 | +packages = ["jupytercad"] |
| 38 | + |
| 39 | +[tool.jupyter-releaser.options] |
| 40 | +version_cmd = "hatch version" |
| 41 | + |
| 42 | +[tool.check-wheel-contents] |
| 43 | +ignore = ["W002"] |
0 commit comments