Skip to content
setup.py 705 B
Newer Older
from setuptools import setup

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

Alessandro Frigeri's avatar
Alessandro Frigeri committed
# The text of the README file
README = (open("README.md")).read()
Alessandro Frigeri's avatar
Alessandro Frigeri committed
setup(name='pymoondb',
      version='0.1.rc1',
      description='A python module to access the MoonDB lunar sample database',
      url='https://www.ict.inaf.it/gitlab/alessandro.frigeri/pymoondb',
      author='Alessandro Frigeri',
      author_email='Alessandro.Frigeri@inaf.it',
Alessandro Frigeri's avatar
Alessandro Frigeri committed
      long_description=README,
      long_description_content_type="text/markdown",
      license='MIT',
      packages=['moondb'],
      install_requires=[
          'markdown',
          'requests',
          'urllib3'
      ],
      zip_safe=False)