|
| 1 | +[project] |
| 2 | +name = "biaplotter" |
| 3 | +dynamic = ["version"] |
| 4 | +description = "A base napari plotter widget for interactive plotting" |
| 5 | +readme = "README.md" |
| 6 | +requires-python = ">=3.10" |
| 7 | +license = { file = "LICENSE" } |
| 8 | +authors = [ |
| 9 | + { name = "Marcelo Leomil Zoccoler", email = "marzoccoler@gmail.com" } |
| 10 | +] |
| 11 | +classifiers = [ |
| 12 | + "Development Status :: 2 - Pre-Alpha", |
| 13 | + "Framework :: napari", |
| 14 | + "Intended Audience :: Developers", |
| 15 | + "License :: OSI Approved :: BSD License", |
| 16 | + "Operating System :: OS Independent", |
| 17 | + "Programming Language :: Python", |
| 18 | + "Programming Language :: Python :: 3", |
| 19 | + "Programming Language :: Python :: 3 :: Only", |
| 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 | + "Topic :: Scientific/Engineering :: Image Processing", |
| 25 | + "Topic :: Scientific/Engineering :: Visualization" |
| 26 | +] |
| 27 | +dependencies = [ |
| 28 | + "numpy>=1.22.0,<2.0.0", |
| 29 | + "magicgui", |
| 30 | + "qtpy", |
| 31 | + "napari-matplotlib", |
| 32 | + "nap-plot-tools>=0.1.0" |
| 33 | +] |
| 34 | + |
| 35 | +[project.optional-dependencies] |
| 36 | +testing = [ |
| 37 | + "tox", |
| 38 | + "pytest", |
| 39 | + "pytest-cov", |
| 40 | + "pytest-qt", |
| 41 | + "napari", |
| 42 | + "pyqt5" |
| 43 | +] |
| 44 | + |
| 45 | +[project.entry-points."napari.manifest"] |
| 46 | +biaplotter = "biaplotter:napari.yaml" |
| 47 | + |
| 48 | +[project.urls] |
| 49 | +"Homepage" = "https://github.com/BiAPoL/biaplotter" |
| 50 | +"Bug Tracker" = "https://github.com/BiAPoL/biaplotter/issues" |
| 51 | +"Documentation" = "https://biapol-biaplotter.readthedocs.io/en/stable/" |
| 52 | +"Source Code" = "https://github.com/BiAPoL/biaplotter" |
| 53 | +"User Support" = "https://github.com/BiAPoL/biaplotter/issues" |
| 54 | + |
1 | 55 | [build-system] |
2 | | -requires = ["setuptools>=42.0.0", "wheel"] |
| 56 | +requires = ["setuptools>=42.0.0", "wheel", "setuptools_scm"] |
3 | 57 | build-backend = "setuptools.build_meta" |
4 | 58 |
|
| 59 | +[tool.setuptools] |
| 60 | +include-package-data = true |
| 61 | + |
| 62 | +[tool.setuptools.packages.find] |
| 63 | +where = ["src"] |
| 64 | + |
| 65 | +[tool.setuptools.package-data] |
| 66 | +"*" = ["*.yaml"] |
5 | 67 |
|
| 68 | +[tool.setuptools_scm] |
| 69 | +write_to = "src/biaplotter/_version.py" |
| 70 | +fallback_version = "0.0.1+nogit" |
6 | 71 |
|
7 | 72 | [tool.black] |
8 | 73 | line-length = 79 |
|
0 commit comments