forked from py4dstem/py4DSTEM
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 705 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 705 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from setuptools import setup, find_packages
exec(open('py4DSTEM/version.py').read()) # Reads the current __version__
setup(name='py4DSTEM',
version=__version__,
packages=find_packages(),
description='Open source processing and analysis of 4D STEM data.',
url='https://github.com/bsavitzky/py4DSTEM/',
author='Benjamin H. Savitzky',
author_email='ben.savitzky@gmail.com',
license='GNU GPLv3',
keywords="STEM 4DSTEM",
install_requires=[
'numpy >= 1.15, < 2.0',
'scipy >= 1.1, < 1.2',
'hyperspy >= 1.4, < 1.5',
'PyQt5 >= 5.9, < 6',
'pyqtgraph >= 0.10, < 0.11',
'qtconsole >= 4.4, < 4.5',
'ncempy >= 1.4.2'
])