forked from dschick/pyEvalData
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
31 lines (30 loc) · 996 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
from setuptools import setup, find_packages
setup(
name='pyEvalData',
version='1.5.1',
packages=find_packages(),
url='https://github.com/dschick/pyEvalData',
install_requires=['numpy',
'matplotlib',
'lmfit',
'scipy',
'uncertainties',
'xrayutilities',
'h5py>=3.0',
'nexusformat'],
extras_require={
'testing': ['flake8', 'pytest'],
'documentation': ['sphinx', 'nbsphinx', 'sphinxcontrib-napoleon'],
},
license='MIT',
author='Daniel Schick',
author_email='[email protected]',
description='Python module to evaluate experimental data',
long_description=open('README.md').read(),
long_description_content_type='text/markdown',
package_data={
'pyEvalData': ['*.conf']
},
python_requires='>=3.5',
keywords='data evaluation analysis SPEC h5 NeXus',
)