-
Notifications
You must be signed in to change notification settings - Fork 17
/
setup.py
34 lines (33 loc) · 861 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
30
31
32
33
34
"""Setup script for pyms, ensure that all dependent packages are installed."""
from setuptools import setup, find_packages
setup(
name="pyms",
version="0.1",
description="An open-source Python multislice package",
author="Hamish Brown",
author_email="[email protected]",
url="https://github.com/HamishGBrown/py_multislice/",
packages=find_packages(),
install_requires=[
"h5py >= 2.10",
"ipython >= 4.0",
"scipy >= 1.1",
"matplotlib >= 3.0",
"nbstripout",
"numpy >= 1.17",
"Pillow >= 6.0",
"torch >= 1.8",
"tqdm >= 4.48",
"ase",
"pypng",
"hankel",
"ipywidgets",
"ipympl",
"sympy",
"scikit-image",
"jupyterlab",
"jenkspy",
"mp_api",
"scikit-learn",
],
)