-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
60 lines (59 loc) · 1.66 KB
/
setup.py
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
from setuptools import setup
setup(
name="napari-dinosim",
version="0.0.4",
description="A simple plugin to use DinoSim in napari",
author="Aitor Gonzalez-Marfil",
author_email="[email protected]",
license="MIT",
url="",
packages=["napari_dinosim"],
package_dir={"": "src"},
include_package_data=True,
python_requires=">=3.9",
install_requires=[
"numpy",
"magicgui",
"qtpy",
"torch",
"torchvision",
"tqdm",
"pillow",
"matplotlib",
"opencv-python",
"tifffile",
"napari",
],
extras_require={
"testing": [
"tox",
"pytest",
"pytest-cov",
"pytest-qt",
"napari",
"pyqt5",
],
},
classifiers=[
"Development Status :: 3 - Alpha",
"Framework :: napari",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Scientific/Engineering :: Image Processing",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
],
entry_points={
"napari.manifest": [
"napari-dinosim = napari_dinosim:napari.yaml",
],
},
)