forked from MichielCottaar/velbin
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
19 lines (17 loc) · 686 Bytes
/
setup.py
File metadata and controls
19 lines (17 loc) · 686 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
config = {
'description': 'Computes the log-likelihood of a single- or multi-epoch velocity distribution for an intrinsic Gaussian velocity distribution including the effect of binary orbital motions and Gaussian measurement uncertainties',
'author': 'Michiel Cottaar',
'url': 'https://github.com/MichielCottaar/velbin',
'download_url': 'https://github.com/MichielCottaar/velbin',
'author_email': 'MichielCottaar@gmail.com',
'version': '0.13',
'install_requires': ['scipy'],
'packages': ['velbin'],
'scripts': [],
'name': 'velbin'
}
setup(**config)