Skip to content
Snippets Groups Projects
Select Git revision
  • 7e7c9b108aa77cf454f3b9ba4b132749bad07cb4
  • main default protected
  • Kelvinrr-patch-3
  • radius_update
  • revert-616-apollo_pan
  • vims
  • 0.10
  • Kelvinrr-patch-2
  • revert-563-minirf_fix
  • Kelvinrr-patch-1
  • 0.9
  • acpaquette-patch-3
  • acpaquette-patch-2
  • acpaquette-patch-1
  • spiceql
  • ci-coverage
  • 0.10.0
  • 0.9.1
  • 0.9.0
  • 0.8.7
  • 0.8.8
  • 0.8.6
  • 0.8.3
  • 0.8.4
  • 0.8.5
  • 0.8.2
  • 0.8.1
  • 0.8.0
  • 0.7.3
  • 0.7.2
  • 0.7.1
  • 0.7.0
  • 0.6.5
  • 0.6.4
  • 0.6.3
  • 0.6.2
36 results

setup.py

Blame
  • setup.py 554 B
    # coding: utf-8
    
    import sys
    from setuptools import setup, find_packages
    
    NAME = "Ale"
    VERSION = "0.0.3"
    
    # To install the library, run the following
    #
    # python setup.py install
    #
    # prerequisite: setuptools
    # http://pypi.python.org/pypi/setuptools
    
    setup(
        name=NAME,
        version=VERSION,
        description="Abstraction Layer for Ephemerides",
        author_email="jlaura@usgs.gov",
        url="",
        keywords=[""],
        packages=find_packages(),
        long_description="""\
        An Abstraction library for reading, writing and computing ephemeris data
        """
    )