-
Notifications
You must be signed in to change notification settings - Fork 15
/
setup.py
34 lines (32 loc) · 857 Bytes
/
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
import os
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
long_description = ""
with open('README.rst') as f:
long_description = f.read()
setup(
name='nway',
version='4.6.0',
author='Johannes Buchner',
author_email='johannes.buchner.acad@gmx.com',
packages=['nwaylib'],
scripts=['nway.py', 'nway-write-header.py', 'nway-explain.py', 'nway-create-fake-catalogue.py', 'nway-create-shifted-catalogue.py', 'nway-calibrate-cutoff.py'],
url='http://pypi.python.org/pypi/nway/',
license='AGPLv3 (see LICENSE file)',
description='Probabilistic Cross-Identification of Astronomical Sources',
long_description=long_description,
install_requires=[
"scipy",
"numpy",
"astropy",
"tqdm",
"matplotlib",
"joblib",
"healpy",
"pandas",
],
setup_requires=['pytest-runner'],
tests_require=['pytest'],
)