Skip to content
Snippets Groups Projects
Select Git revision
  • 0b0f0e259c1f65bb92fb119370f1a1bb51a4e0f7
  • 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
    • acpaquette's avatar
      0b0f0e25
      ALE 0.9.0 ticks (#526) · 0b0f0e25
      acpaquette authored
      * ALE 0.9.0 ticks
      
      * Disabled MSI drivers
      
      * Added missing changelog entries
      
      * Fixed changelog link
      
      * Updated code.json
      
      * Updated 0.9.0 urls
      
      * Added DOI badge for ALE
      
      * Flippsed badge and link
      
      * Fixed release URLs
      
      * Fixed last link
      ALE 0.9.0 ticks (#526)
      acpaquette authored
      * ALE 0.9.0 ticks
      
      * Disabled MSI drivers
      
      * Added missing changelog entries
      
      * Fixed changelog link
      
      * Updated code.json
      
      * Updated 0.9.0 urls
      
      * Added DOI badge for ALE
      
      * Flippsed badge and link
      
      * Fixed release URLs
      
      * Fixed last link
    setup.py 734 B
    # coding: utf-8
    
    import sys
    from setuptools import setup, find_packages
    
    NAME = "Ale"
    VERSION = "0.9.0"
    
    # 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="USGS ASC Development Team",
        author_email="",
        url="",
        keywords=[""],
        packages=find_packages(),
        long_description="""\
        An Abstraction library for reading, writing and computing ephemeris data
        """,
        package_data={'': ['config.yml']},
        entry_points={
            "console_scripts": [
                "isd_generate=ale.isd_generate:main"
            ],
        },
    )