-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
executable file
·115 lines (98 loc) · 3.38 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
#!/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 NXS configuration recorder """
import os
import sys
from setuptools import setup
try:
from sphinx.setup_command import BuildDoc
except Exception:
BuildDoc = None
#: package name
NDTS = "sardananxsrecorder"
#: nxswriter imported package
INDTS = __import__(NDTS)
needs_pytest = set(['test']).intersection(sys.argv)
pytest_runner = ['pytest-runner'] if needs_pytest else []
def read(fname):
""" reading a file
"""
return open(os.path.join(os.path.dirname(__file__), fname)).read()
#: required python packages
install_requires = [
'lxml',
'numpy>1.6.0',
# 'pytango',
# 'nxswriter',
# 'nxstools', # >4.1.0
# 'nxsconfigserver',
# 'sardana',
# 'taurus',
# 'pymysqldb',
]
release = INDTS.__version__
version = ".".join(release.split(".")[:2])
name = "Sardana NeXus Recorder"
#: metadata for distutils
SETUPDATA = dict(
name="sardana-nxsrecorder",
version=INDTS.__version__,
author="Jan Kotanski",
author_email="jankotan@gmail.com",
description=("NeXus Sardana Scan Recorder"),
license="GNU GENERAL PUBLIC LICENSE v3",
keywords="NeXus sardana scan recorder data",
url="https://github.com/nexdatas/sardana-nxs-filerecorder/",
packages=['sardananxsrecorder'],
cmdclass={'build_sphinx': BuildDoc},
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 :: 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',
],
install_requires=install_requires,
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()