-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
29 lines (28 loc) · 847 Bytes
/
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
"""Setup script for measureice, ensure that all dependent packages are installed."""
from setuptools import setup, find_packages
setup(
name="measureIce",
version="0.1",
description="A software tool for measuring ice thickness in cryo-EM",
author="Hamish Brown",
author_email="[email protected]",
url="https://github.com/HamishGBrown/measureIce/",
packages=find_packages(),
scripts=['Generate_MeasureIce_calibration.py', 'MeasureIce.py','ser.py'],
install_requires=[
"h5py >= 2.10",
"ipython >= 4.0",
"scipy >= 1.1",
"matplotlib >= 3.0",
"numpy",
"Pillow >= 6.0",
"torch >= 1.8.0",
"tqdm >= 4.48",
"ase",
"pypng",
"pyqtgraph",
"black",
"PyQT5",
"mrcfile"
],
)