-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
56 lines (49 loc) · 1.46 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
[build-system]
requires = ["setuptools>=61", "setuptools-scm>=6.4", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "ilastik-napari"
description = "ilastik plugin for napari"
readme = "README.md"
requires-python = ">=3.8"
license = {text = "MIT"}
authors = [
{name = "Emil Melnikov", email = "[email protected]"},
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"Environment :: Plugins",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Framework :: napari",
"Operating System :: MacOS",
"Operating System :: MacOS :: MacOS X",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Image Processing",
]
dependencies = [
"napari>=0.4.13",
"numpy>=1.20",
"qtpy",
"scikit-learn",
"sparse",
]
dynamic = ["version"]
[project.urls]
homepage = "https://github.com/ilastik/ilastik-napari"
[project.entry-points."napari.manifest"]
ilastik-napari = "ilastik.napari:plugin.toml"
[tool.setuptools]
package-dir = {"" = "src"}
[tool.setuptools.packages.find]
where = ["src"]
[tool.isort]
profile = "black"
[tool.setuptools_scm]