-
Notifications
You must be signed in to change notification settings - Fork 11
/
setup.py
78 lines (73 loc) · 2.29 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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from os.path import dirname, realpath
from setuptools import setup
import sys
main_module_name = 'temul'
sys.path.insert(0, realpath(dirname(__file__))+"/"+main_module_name)
from _version import version # noqa: E402
with open('README.md') as f:
long_description = f.read()
setup(
name='temul-toolkit',
packages=[
'temul',
'temul.topotem',
'temul.example_data.experimental',
'temul.example_data.prismatic',
'temul.example_data.structures',
'temul.external.atomap_devel_012',
'temul.external.atomap_devel_012.external',
'temul.external.skimage_devel_0162',
],
version=version,
description='Functions for analysis of high resolution electron '
'microscopy and spectroscopy data.',
long_description=long_description,
long_description_content_type='text/markdown',
author="Eoghan N O'Connell",
author_email='[email protected]',
license='GPL v3',
url='https://temul-toolkit.readthedocs.io/',
keywords=[
'STEM',
'data analysis',
'microscopy',
'data science',
'image simulation',
'atomic models'
],
install_requires=[
'atomap',
'colorcet',
'glob2',
'hyperspy',
'numpy',
'matplotlib',
'matplotlib-scalebar',
'pandas',
'periodictable',
'scikit-image',
'scipy',
'tifffile',
'tqdm',
],
classifiers=[
'Development Status :: 3 - Alpha',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Intended Audience :: Science/Research',
'Programming Language :: Python :: 3',
],
package_data={
'temul.example_data.experimental': [
'example_Au_nanoparticle.emd',
'example_Se_implanted_MoS2.dm3'],
'temul.example_data.prismatic': [
'example_MoS2_vesta_xyz.xyz',
'MoS2_hex_prismatic.xyz',
'calibrated_data_probeStep0.01_interpolationFactor4_crop0.5.hspy'],
'temul.example_data.structures': [
'example_Cu_nanoparticle_sim.hspy'],
},
include_package_data=True,
)