forked from Dioptas/Dioptas
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (36 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
# -*- coding: utf-8 -*-
from setuptools import find_packages, setup
from Cython.Build import cythonize
import versioneer
ext_modules = cythonize('dioptas/model/util/smooth_bruckner_cython.pyx')
version = versioneer.get_version()
if version == "0+unknown":
version = "0.5.4"
setup(
name='dioptas',
version=version,
cmdclass=versioneer.get_cmdclass(),
license='GPLv3',
author='Clemens Prescher',
author_email="[email protected]",
url='https://github.com/Dioptas/Dioptas/',
install_requires=['cython', 'extra_data', 'future', 'h5py', 'hdf5plugin', 'lmfit', 'pandas', 'pycifrw',
'python-dateutil', 'pyinstaller', 'pyqt5', 'pyfai', 'pyepics', 'pyqtgraph', 'qtpy',
'scikit-image', 'sharedmem', 'watchdog'],
description='GUI program for reduction and exploration of 2D X-ray diffraction data',
classifiers=['Intended Audience :: Science/Research',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Scientific/Engineering',
],
packages=find_packages(),
package_data={'dioptas': ['resources/style/*',
'resources/calibrants/*',
'resources/data/*',
'resources/icons/*',
'__version__'
]
},
scripts=['scripts/dioptas', 'scripts/dioptas_batch'],
ext_modules=ext_modules,
)