-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (28 loc) · 810 Bytes
/
setup.py
File metadata and controls
32 lines (28 loc) · 810 Bytes
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
from setuptools import setup, find_packages
def setup_package():
__version__ = "0.1"
url = "https://github.com/PytorchConnectomics/em_erl"
setup(
name="em_erl",
description="Expected run length (ERL) evaluation",
version=__version__,
url=url,
license="MIT",
author="Donglai Wei",
python_requires=">=3.10",
install_requires=[
"numpy",
"imageio",
],
extras_require={
"h5": ["h5py"],
"zarr": ["zarr"],
"cloud": ["cloud-volume"],
"skel": ["kimimaro"],
"all": ["h5py", "zarr", "cloud-volume", "kimimaro"],
},
packages=find_packages(),
)
if __name__ == "__main__":
# pip install --editable .
setup_package()