-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
executable file
·85 lines (74 loc) · 3.43 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
79
80
81
82
83
84
#!/usr/bin/env python
from setuptools import setup, find_packages
# txrm2nexus setup.py for usage of setuptools
# The version is updated automatically with bumpversion
# Do not update manually
__version = '10.18.0'
long_description = """This project allows to process in many ways images in
hdf5 format. Moreover it allows to convert from xrm/txrm formats into
hdf5 format. It has been developd at ALBA Synchrotron Light Source, and
it is mainly used for image processing purposes at BL09-Mistral
Tomography Beamline.
"""
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 3 - Alpha',
# Indicate who your project is intended for
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries',
# Pick your license as you wish (should match "license" above)
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# Specify the Python versions you support here. In particular, ensure
# that you indicate whether you support Python 2, Python 3 or both.
'Programming Language :: Python :: 2.7',
]
setup(
name='txrm2nexus',
version=__version,
packages=find_packages(),
entry_points={
'console_scripts': [
'xrm2h5 = txm2nexuslib.scripts.xrm2h5:main',
'xrm2nexus = txm2nexuslib.scripts.xrm2nexus:main',
'manytomos2nexus = txm2nexuslib.scripts.manytomos2nexus:main',
'txrm2nexus = txm2nexuslib.scripts.txrm2nexus:main',
'mosaic2nexus = txm2nexuslib.scripts.mosaic2nexus:main',
'normalize = txm2nexuslib.scripts.normalize:main',
'magnify = txm2nexuslib.scripts.magnify:main',
'autotxrm2nexus = txm2nexuslib.scripts.autotxrm2nexus:main',
'automosaic2nexus = txm2nexuslib.scripts.automosaic2nexus:main',
'autonormalize = txm2nexuslib.scripts.autonormalize:main',
'img = txm2nexuslib.scripts.image_operate:main',
'copy2proc = txm2nexuslib.scripts.copy2proc:main',
'manyxrm2h5 = txm2nexuslib.scripts.manyxrm2h5:main',
'manynorm = txm2nexuslib.scripts.manynorm:main',
'manycrop = txm2nexuslib.scripts.manycrop:main',
'manyalign = txm2nexuslib.scripts.manyalign:main',
'manyaverage = txm2nexuslib.scripts.manyaverage:main',
'img2stack = txm2nexuslib.scripts.img2stack:main',
'manyxrm2norm = txm2nexuslib.workflows.manyxrm2norm:main',
'xtendof = txm2nexuslib.workflows.xtendof:main',
'magnetism = txm2nexuslib.workflows.magnetism:main',
'ctbio = txm2nexuslib.workflows.ctbio:main',
'ctbiopartial = txm2nexuslib.workflows.ctbiopartial:main',
'energyscan = txm2nexuslib.workflows.energyscan:main'
]
},
author='Marc Rosanes, Carlos Falcon, Zbigniew Reszela, Carlos Pascual',
maintainer='ctgensoft',
maintainer_email='[email protected]',
url='https://github.com/ALBA-Synchrotron/txrm2nexus.git',
keywords='APP',
license='GPLv3',
description='HDF5 images pre-processing (formats: hdf5, xrm, txrm)',
long_description=long_description,
requires=['setuptools (>=1.1)'],
install_requires=['numpy'],
classifiers=classifiers
)