-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
33 lines (28 loc) · 978 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
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='AmorphSim',
version='0.02',
description='Tool for simulating amorphous Materials',
long_description=readme(),
keywords='Simulations STEM Electron Microscopy Glass',
url='https://github.com/CSSFrancis/AmorphSim',
author='CSSFrancis',
author_email='[email protected]',
liscense='MIT',
packages=['AmorphSim',
'AmorphSim.draw',
'AmorphSim.clusters',
'AmorphSim.sim',
'AmorphSim.utils',],
install_requires=['hyperspy >=1.5',
'numpy>=1.10,!=1.70.0',
'matplotlib',
'scipy',
'scikit-image',
'diffsims'],
zip_safe=False)