-
Notifications
You must be signed in to change notification settings - Fork 12
/
pyproject.toml
69 lines (61 loc) · 1.67 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
[project]
name = "napari-svg"
description = "A plugin for writing svg files with napari"
license = {text = "BSD-3"}
authors = [
{name = "Nicholas Sofroniew", email = "[email protected]"},
{name = "napari core devs", email = "[email protected]"},
]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Framework :: napari",
"Topic :: Software Development :: Testing",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Operating System :: OS Independent",
"License :: OSI Approved :: BSD License",
]
readme = {file = "README.md", content-type = "text/markdown"}
requires-python = ">=3.9"
dependencies = [
"imageio>=2.5.0",
"numpy>=1.16.0",
"vispy>=0.6.4",
]
dynamic = ["version"]
[project.optional-dependencies]
testing = [
"napari>=0.4",
"pyqt5",
"pytest",
"pytest-cov",
]
[project.entry-points."napari.manifest"]
napari-svg = "napari_svg:napari.yaml"
[project.urls]
Source = 'https://github.com/napari/napari-svg'
"Bug Tracker" = 'https://github.com/napari/napari-svg/issues'
[build-system]
requires = [
"setuptools >= 56",
"wheel",
"setuptools_scm[toml]>=8.0"
]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
write_to = "napari_svg/_version.py"
[tool.setuptools]
include-package-data = true
license-files = ['LICENSE']
zip-safe = false
[tool.setuptools.packages.find]
include = ['napari_svg']
exclude = ['docs']
namespaces = false
[tool.setuptools.package-data]
napari_svg = ['*napari.yaml']