forked from lofar-astron/factor
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
56 lines (49 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
55
56
from __future__ import print_function
from setuptools import setup, Command
import os
import factor._version
description = 'FACTOR: Facet calibration for LOFAR'
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, 'runtests.py'])
raise SystemExit(errno)
setup(
name='FACTOR',
version=factor._version.__version__,
url='http://github.com/lofar-astron/factor/',
description=description,
long_description=long_description,
platforms='any',
classifiers = [
'Programming Language :: Python',
'Development Status :: 1 - Alpha',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Operating System :: POSIX :: Linux',
'Topic :: Scientific/Engineering :: Astronomy',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['numpy', 'scipy', 'astropy', 'jinja2', 'aplpy>=1.0', 'LSMTool>=1.1', ],
dependency_links=['https://github.com/darafferty/LSMTool'],
scripts = ['bin/runfactor','bin/checkfactor','bin/archivefactor','bin/unarchivefactor'],
packages=['factor', 'factor.operations', 'factor.lib'],
package_data={'factor': [
'parsets/*',
'pipeline/*.cfg',
'pipeline/parsets/*',
'pipeline/plugins/*',
'pipeline/recipes/nodes/*',
'scripts/*',
'skymodels/*']},
cmdclass = {'test': PyTest},
)