Skip to content

Commit 0a4fd52

Browse files
Comment all install_requires libraries from setup.cfg, but leave the information there
1 parent 1a931dc commit 0a4fd52

File tree

1 file changed

+18
-21
lines changed

1 file changed

+18
-21
lines changed

setup.cfg

Lines changed: 18 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,18 @@ project_urls =
3030

3131
[options]
3232
packages = find:
33-
install_requires =
34-
imageio
35-
magicgui
33+
python_requires = >=3.8
34+
include_package_data = True
35+
package_dir =
36+
= .
37+
# The recommended installation method is with conda-forge, because
38+
# several required libraries depend on packages only available on conda-forge.
39+
# install_requires =
40+
# imageio
41+
# magicgui
3642
# nifty
37-
numpy
38-
pooch
43+
# numpy
44+
# pooch
3945
# python-elf
4046
# pytorch
4147
# qtpy
@@ -48,21 +54,6 @@ install_requires =
4854
# zarr
4955
# z5py
5056

51-
python_requires = >=3.8
52-
include_package_data = True
53-
package_dir =
54-
= .
55-
56-
# add your package requirements here
57-
58-
[options.packages.find]
59-
where = .
60-
61-
# tell napari where to find to your manifest
62-
[options.entry_points]
63-
napari.manifest =
64-
micro-sam = micro_sam:napari.yaml
65-
6657
[options.extras_require]
6758
testing =
6859
tox
@@ -72,12 +63,18 @@ testing =
7263
napari
7364
pyqt5
7465

66+
[options.packages.find]
67+
where = .
68+
69+
# tell napari where to find to your manifest
70+
[options.entry_points]
71+
napari.manifest =
72+
micro-sam = micro_sam:napari.yaml
7573

7674
# make sure it gets included in your package
7775
[options.package_data]
7876
* = *.yaml
7977

80-
8178
[project.scripts]
8279
micro_sam.annotator = "micro_sam.sam_annotator.annotator:main"
8380
micro_sam.annotator_2d = "micro_sam.sam_annotator.annotator_2d:main"

0 commit comments

Comments
 (0)