-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·87 lines (76 loc) · 3.61 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
85
86
#!/usr/bin/env python
from setuptools import setup, find_packages
# bl09-imaging setup.py for usage of setuptools
# The version is updated automatically with bumpversion
# Do not update manually
__version = '12.4.0-alpha'
long_description = """bl09-imaging: Image/Signal processing for BL09-Mistral
Synchrotron Beamline Laboratory (formats: hdf5, mrc, xrm/txrm).
It has been developed at ALBA Synchrotron Light Source. It is used for
image processing purposes at BL09-Mistral Tomography and 2D-Spectroscopy
Soft X-Ray Imaging Beamline. Part of the project involving the
hdf5 image processing is generic, making it possible to be deployed and
used in other Laboratories & Beamlines.
"""
classifiers = [
# How mature is this project? Common values are
# 3 - Alpha
# 4 - Beta
# 5 - Production/Stable
'Development Status :: 4 - Beta',
# 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 or later (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='bl09-imaging',
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',
author_email='mrosanes@cells.es, cfalcon@cells.es, zreszela@cells.es, '
'cpascual@cells.es',
maintainer='ctgensoft',
maintainer_email='ctgensoft@cells.es',
url='https://github.com/ALBA-Synchrotron/bl09-imaging.git',
keywords='APP',
license='GPLv3',
description='Image processing for scientific research (hdf5/mrc/txrm)',
long_description=long_description,
requires=['setuptools (>=1.1)'],
install_requires=['numpy'],
classifiers=classifiers
)