forked from abTEM/abTEM
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
46 lines (42 loc) · 1.15 KB
/
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
35
36
37
38
39
40
41
42
43
44
45
46
import os
from io import open as io_open
from setuptools import setup, find_packages
__version__ = None
src_dir = os.path.abspath(os.path.dirname(__file__))
version_file = os.path.join(src_dir, 'abtem', '_version.py')
with io_open(version_file, mode='r') as fd:
exec(fd.read())
fndoc = os.path.join(src_dir, 'README.md')
with io_open(fndoc, mode='r', encoding='utf-8') as fd:
README_md = fd.read()
setup(
name='abtem',
version=__version__,
description='ab initio Transmission Electron Microscopy',
long_description=README_md,
url='https://github.com/jacobjma/abtem',
author='Jacob Madsen',
author_email='[email protected]',
maintainer='Jacob Madsen',
maintainer_email='[email protected]',
platforms=['any'],
python_requires='>=3.6',
install_requires=[
'numba',
'numpy',
'scipy',
'imageio',
'pyfftw',
'h5py',
'matplotlib',
'ase',
'tqdm',
'psutil'],
extras_require={
'full': ['hyperspy',
'pyxem']
},
tests_require=['pytest'],
packages=find_packages(),
include_package_data=True,
)