forked from KosinskiLab/colabseg
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
51 lines (46 loc) · 1.21 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
import sys
try:
from setuptools import setup, find_packages
except:
raise ImportError("setuptools is required. Install it with: pip install setuptools")
# if sys.version_info < (3.9, 0):
# sys.exit('Python 3.9 is required! please install in your environment.')
VERSION = "0.0.3"
DESCRIPTION = "Colab Seg "
LONG_DESCRIPTION = (
"Segmentation toolbox GUI for membranes from cryo-electron tomography images"
)
# Setting up
setup(
name="colabseg",
version=VERSION,
author="Marc Siggel",
author_email="[email protected]",
description=DESCRIPTION,
long_description=LONG_DESCRIPTION,
packages=find_packages(),
python_requires=">=3.6, <=3.9",
install_requires=[
"py3Dmol>2.0",
"numpy",
"h5py",
"scipy",
"tqdm",
"scipy",
"matplotlib",
"pandas",
"open3d",
"ipython",
"jupyter",
"future",
"pyntcloud",
"napari",
],
keywords=["python", "first package"],
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Operating System :: MacOS :: MacOS X",
],
)