-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
executable file
·34 lines (29 loc) · 893 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
34
# BSD 3-Clause License
#
# Copyright (c) 2020, Eric Prestat
# All rights reserved.
from setuptools import setup, find_packages
install_requires = ['hyperspy>=1.6',
'matplotlib',
# Use of `like` keywords - NEP-35
'numpy>=1.20',
'scikit-image',
]
tests_require = ['pytest']
setup(name='gpa',
version='0.1',
description='Geometrical Phase analysis (GPA)',
url='',
author='Eric Prestat',
author_email='[email protected]',
package_data={
'gpa': ['hyperspy_extension.yaml'],
},
entry_points={'hyperspy.extensions': 'gpa = gpa'},
license='BSD-3-Clause',
packages=find_packages(),
python_requires='~=3.6',
install_requires=install_requires,
tests_require=tests_require,
zip_safe=False
)