-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
45 lines (42 loc) · 1.51 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
"""
Author: Michael Luciuk
Date: Summer 2022
"""
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name='pyTEM',
version='0.1.0',
description='Control and Automation of Transmission Electron Microscopes',
long_description=long_description,
url='https://github.com/basf/pyTEM',
author='BASF TEM Laboratory',
author_email='philipp.mueller@basf.com',
keywords=['transmission electron microscopy', 'TEM', 'microscopy', 'electron microscopy',
'micro-crystal electron diffraction', 'uED'],
license='MIT',
packages=find_packages(exclude=['*.test', '*.test.*', 'test.*', 'test']),
python_requires='>=3.8',
install_requires=['numpy',
'pandas',
'hyperspy',
'scipy',
'tifffile',
'comtypes',
'matplotlib',
'setuptools',
'mrcfile',
'pathlib',
'Pillow',
],
entry_points='''
[console_scripts]
align_images=pyTEM_scripts.align_images:script_entry
bulk_carbon_analysis=pyTEM_scripts.bulk_carbon_analysis:script_entry
micro_ed=pyTEM_scripts.micro_ed:script_entry
''',
package_data={'': ['*.ico', '*.npy']},
include_package_data=True,
)