-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
168 lines (145 loc) · 4.67 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
#!/usr/bin/env python
# This file is part of nexdatas - Tango Server for NeXus data writer
#
# Copyright (C) 2012-2018 DESY, Jan Kotanski <jkotan@mail.desy.de>
#
# nexdatas is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# nexdatas is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with nexdatas. If not, see <http://www.gnu.org/licenses/>.
#
""" setup.py for command-line nxstools """
import os
import sys
from setuptools import setup
# from setuptools.command.build_py import build_py
# from distutils.core import setup
from distutils.core import Command
try:
from sphinx.setup_command import BuildDoc
except Exception:
BuildDoc = None
PKG = "nxstools"
IPKG = __import__(PKG)
needs_pytest = set(['test']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
install_requires = [
'argcomplete',
'pytz',
'numpy>1.6.0',
'lxml',
# 'fabio',
'pyyaml',
# 'pil',
# 'matplotlib',
# 'pytango',
# 'pninexus',
# 'h5py',
# 'blissdata',
]
def read(fname):
"""reading a file
:param fname: file name
:type fname: :obj:`str`
"""
with open(os.path.join(os.path.dirname(__file__), fname)) as fl:
return fl.read()
class TestCommand(Command):
""" test command class
"""
#: user options
user_options = []
#: initializes options
def initialize_options(self):
pass
#: finalizes options
def finalize_options(self):
pass
#: runs command
def run(self):
import sys
import subprocess
errno = subprocess.call([sys.executable, 'test'])
raise SystemExit(errno)
release = IPKG.__version__
version = ".".join(release.split(".")[:2])
name = "NXSTools"
author = "Jan Kotanski, Eugen Wintersberger , Halil Pasic"
glicense = "GNU GENERAL PUBLIC LICENSE version 3"
#: metadata for distutils
SETUPDATA = dict(
name="nxstools",
version=IPKG.__version__,
author=author,
author_email="jankotan@gmail.com, eugen.wintersberger@gmail.com, "
+ "halil.pasic@gmail.com",
maintainer="Jan Kotanski, Eugen Wintersberger , Halil Pasic",
maintainer_email="jankotan@gmail.com, eugen.wintersberger@gmail.com, "
+ "halil.pasic@gmail.com",
license=glicense,
description=("Configuration tools for NeXDaTaS Tango Servers"),
keywords="configuration writer Tango component nexus data",
url="http://github.com/nexdatas/nxstools",
platforms=("Linux"),
install_requires=install_requires,
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering :: Physics',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
# 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
# 'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
'Programming Language :: Python :: 3.8',
'Programming Language :: Python :: 3.9',
'Programming Language :: Python :: 3.10',
'Programming Language :: Python :: 3.11',
'Programming Language :: Python :: 3.12',
],
packages=["nxstools", "nxstools.xmltemplates", "nxstools.pyeval",
"nxstools.ontology"],
package_data={'nxstools.xmltemplates': ['*.xml'],
'nxstools.ontology': ['*.json']},
scripts=[
'nxsconfig',
'nxsdata',
'nxscreate',
'nxscollect',
'nxsetup',
'nxsfileinfo',
],
cmdclass={
# 'test': TestCommand,
'build_sphinx': BuildDoc
},
zip_safe=False,
setup_requires=pytest_runner,
tests_require=['pytest'],
command_options={
'build_sphinx': {
'project': ('setup.py', name),
'version': ('setup.py', version),
'release': ('setup.py', release)
}
},
long_description=read('README.rst'),
# long_description_content_type='text/x-rst'
)
def main():
""" the main function
"""
setup(**SETUPDATA)
if __name__ == '__main__':
main()