-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
31 lines (26 loc) · 917 Bytes
/
setup.py
File metadata and controls
31 lines (26 loc) · 917 Bytes
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
from setuptools import setup, find_packages
from os import path
from io import open
here = path.abspath(path.dirname(__file__))
def readme():
with open('README.md') as f:
return f.read()
setup(name='SymSim',
version='0.01',
description='Tool for simulating planes of symmetries assuming kinematic diffraction',
long_description=readme(),
keywords='Simulations STEM Electron Microscopy Glass',
url='https://github.com/CSSFrancis/SymSim',
author='CSSFrancis',
author_email='csfrancis@wisc.edu',
liscense='MIT',
packages=['SymSim',
'SymSim.utils',
'SymSim.draw',
'SymSim.sim'],
install_requires=['hyperspy >=1.5',
'numpy>=1.10,!=1.70.0',
'matplotlib',
'scipy',
'scikit-image'],
zip_safe=False)