-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathsetup.py
More file actions
22 lines (19 loc) · 782 Bytes
/
setup.py
File metadata and controls
22 lines (19 loc) · 782 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#!/usr/bin/env python
#from distutils.core import setup
from setuptools import setup, find_packages
# Change name to "thedoppler" when you want to
# load to PYPI
pypiname = 'thedoppler'
setup(name="doppler",
version='1.1.32',
description='Generic Radial Velocity Software',
author='David Nidever',
author_email='dnidever@montana.edu',
url='https://github.com/dnidever/doppler',
packages=find_packages(exclude=["tests"]),
scripts=['bin/doppler'],
install_requires=['numpy','astropy(>=4.0)','scipy','dlnpyutils(>=1.0.3)','dill','emcee','corner',
'annieslasso','gdown'],
#dependency_links=['http://github.com/dnidever/AnniesLasso/tarball/v1.0.0#egg=the-cannon'],
include_package_data=True
)