forked from NEFM-TUDresden/MCRpy
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
28 lines (25 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
from setuptools import setup, find_packages
def readme():
with open('README.rst') as f:
return f.read()
setup(name='mcrpy',
version='0.1.0',
description='Microstructure characterization and reconstruction in Python',
url='https://github.com/NEFM-TUDresden/MCRpy',
author='NEFM-TUDresden',
author_email='paul.seibert@tu-dresden.de',
license='Apache2.0',
packages=find_packages(),
install_requires=[
'numpy>=1.20.1',
'tensorflow>=2.3.1',
'matplotlib>=3.3.4',
'scipy>=1.6.2'
],
extras_require={
'FFTCorrelations': ['pymks>=0.4.1', 'sklearn>=0.24.1'],
'animations': ['imageio-ffmpeg>=0.4.5'],
'GUI': ['Gooey>=1.0.8.1']
},
package_data={'': ['*.pkl', '*.npy', '*.pickle', '*.png']},
zip_safe=False)