https://github.com/shbhuk/barycorrpy
Raw File
Tip revision: 4f48f89980b5e2b3ebc8030a3c98211b24688f1b authored by Shubham on 15 September 2021, 13:38:02 UTC
Update README.md
Tip revision: 4f48f89
setup.py
from setuptools import setup

def readme():
    with open('README.md') as f:
        return f.read()



setup(name='barycorrpy',
      version='0.4.4',
      description='Barycentric Velocity correction at 1 cm/s level',
      long_description=readme(),
      url='https://github.com/shbhuk/barycorrpy',
      author='Shubham Kanodia',
      author_email='shbhuk@gmail.com',
      install_requires=['astropy>=4.0.4','jplephem','numpy>=1.17.2','scipy','astroquery>=0.3.10', 'pyerfa>=1.7.3'],
      packages=['barycorrpy', 'barycorrpy.tests'],
      license='GPLv3',
      classifiers=['Topic :: Scientific/Engineering :: Astronomy'],
      keywords='Barycentric Correction Astronomy Spectroscopy Radial Velocity',
      include_package_data=True
      )
back to top