|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools>=42.0.0", "wheel"] |
| 2 | +requires = ["setuptools>=64", "setuptools_scm[toml]>=8"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "surforama" |
| 7 | +dynamic = ["version"] |
| 8 | +description = "a tool for using surfaces to explore volumetric data in napari" |
| 9 | +readme = "README.md" |
| 10 | +license = { file = "LICENSE" } |
| 11 | +authors = [ |
| 12 | + { name = "Kyle Harrington", email = "surforama@kyleharrington.com" }, |
| 13 | +] |
| 14 | +classifiers = [ |
| 15 | + "Development Status :: 2 - Pre-Alpha", |
| 16 | + "Framework :: napari", |
| 17 | + "Intended Audience :: Developers", |
| 18 | + "License :: OSI Approved :: MIT License", |
| 19 | + "Operating System :: OS Independent", |
| 20 | + "Programming Language :: Python", |
| 21 | + "Programming Language :: Python :: 3", |
| 22 | + "Programming Language :: Python :: 3 :: Only", |
| 23 | + "Programming Language :: Python :: 3.8", |
| 24 | + "Programming Language :: Python :: 3.9", |
| 25 | + "Programming Language :: Python :: 3.10", |
| 26 | + "Topic :: Scientific/Engineering :: Image Processing", |
| 27 | +] |
| 28 | +requires-python = ">=3.10" |
| 29 | +dependencies = [ |
| 30 | + "magicgui", |
| 31 | + "mrcfile", |
| 32 | + "numpy", |
| 33 | + "pooch", |
| 34 | + "qtpy", |
| 35 | + "pyacvd", |
| 36 | + "pyvista", |
| 37 | + "rich", |
| 38 | + "scikit-image", |
| 39 | + "starfile", |
| 40 | + "trimesh", |
| 41 | + "typer", |
| 42 | +] |
| 43 | + |
| 44 | +[project.urls] |
| 45 | +"Bug Tracker" = "https://github.com/cellcanvas/surforama/issues" |
| 46 | +"Documentation" = "https://github.com/cellcanvas/surforama#README.md" |
| 47 | +"Source Code" = "https://github.com/cellcanvas/surforama" |
| 48 | +"User Support" = "https://github.com/cellcanvas/surforama/issues" |
| 49 | + |
| 50 | +[project.scripts] |
| 51 | +surforama = "surforama._cli:app" |
| 52 | + |
| 53 | +[project.entry-points."napari.manifest"] |
| 54 | +surforama = "surforama:napari.yaml" |
| 55 | + |
| 56 | +[project.optional-dependencies] |
| 57 | +testing = [ |
| 58 | + "napari", |
| 59 | + "pyqt5", |
| 60 | + "pytest", |
| 61 | + "pytest-cov", |
| 62 | + "pytest-qt", |
| 63 | + "tox", |
| 64 | +] |
| 65 | +docs = [ |
| 66 | + "mkdocs<2", |
| 67 | + "mkdocs-material", |
| 68 | + "mkdocstrings[python]", |
| 69 | + "mkdocs-video", |
| 70 | +] |
| 71 | +napari = ["napari[all]"] |
| 72 | +dev = [ |
| 73 | + "surforama[testing,docs]", |
| 74 | + "pre-commit", |
| 75 | +] |
| 76 | + |
| 77 | +[tool.setuptools.packages.find] |
| 78 | +where = ["src"] |
| 79 | + |
| 80 | +[tool.setuptools.package-data] |
| 81 | +"*" = ["*.yaml"] |
5 | 82 |
|
6 | 83 | [tool.setuptools_scm] |
7 | 84 | write_to = "src/surforama/_version.py" |
|
0 commit comments