forked from revoltek/losoto
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
executable file
·54 lines (46 loc) · 1.69 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
from __future__ import print_function
from setuptools import setup, Command
import os
import losoto._version
description = 'LOFAR Solution Tool'
long_description = description
if os.path.exists('README.md'):
with open('README.md') as f:
long_description=f.read()
class PyTest(Command):
user_options = []
def initialize_options(self):
pass
def finalize_options(self):
pass
def run(self):
import sys,subprocess
errno = subprocess.call([sys.executable, 'tools/losoto_test.py'])
raise SystemExit(errno)
setup(
name='losoto',
version=losoto._version.__version__,
url='http://github.com/revoltek/losoto/',
author='Francesco de Gasperin',
author_email='[email protected]',
description=description,
long_description=long_description,
platforms='any',
classifiers = [
'Programming Language :: Python',
'Development Status :: Stable',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
tests_require=['pytest'],
install_requires=['numpy>=1.9','cython','numexpr>=2.0','tables>=3.4','configparser'],
scripts = ['bin/losoto', 'bin/H5parm_benchmark.py', 'bin/H5parm_split.py',
'bin/H5parm2parmdb.py', 'bin/parmdb2H5parm.py', 'bin/killMS2H5parm.py',
'bin/H5parm_collector.py','bin/H5parm_copy.py','bin/H5parm_interpolator.py'],
packages=['losoto','losoto.operations','losoto.progressbar'],
test_suite='test',
cmdclass = {'test': PyTest},
)