-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
49 lines (48 loc) · 1.27 KB
/
setup.py
File metadata and controls
49 lines (48 loc) · 1.27 KB
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
from setuptools import find_packages, setup
setup(
name="SynAnno",
version="0.1.0",
description="A package for annotation processing and cloud volume handling.",
author="Leander Lauenburg",
author_email="leander.lauenburg@gmail.com",
url="https://github.com/PytorchConnectomics/SynAnno",
packages=find_packages(),
install_requires=[
"numpy<2",
"flask>=2.3.2",
"flask-cors>=4.0.0",
"flask-session>=0.5.0",
"cloud-volume",
"navis==1.10.0",
"networkx==3.1",
"neuroglancer>=2.36",
"pandas>=2.0.3",
"scipy>=1.11.0",
"scikit-image>=0.21.0",
"opencv-python>=4.7.0.72",
"oauth2client>=4.1.3",
"tifffile>=2023.4.12",
"fpzip==1.2.4",
"imageio>=2.31.1",
"python-dotenv==1.0.1",
],
extras_require={
"dev": [
"pytest",
"pre-commit",
],
"seg": [
"torch",
"torchvision",
"torchsummary",
"tqdm",
"matplotlib",
],
},
python_requires=">=3.9",
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
)