Skip to content
Snippets Groups Projects
Select Git revision
  • 6669a90f8ad3bcce10c97bf29fd9eb96fb3e2739
  • main default protected
  • 1.6.11
  • 1.6.4
  • 1.6.3
  • 1.6.2
  • 1.6.1
  • 1.6.0
  • 1.5.14
  • 1.5.13
  • 1.5.12
  • 1.5.11
  • 1.5.10
  • 1.5.9
  • 1.5.8
15 results

XmlSerializer.java

Blame
  • setup.py 618 B
    # coding: utf-8
    
    import sys
    from setuptools import setup, find_packages
    
    NAME = "Ale"
    VERSION = "0.6.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']}
    )