Skip to content
Snippets Groups Projects
Select Git revision
  • 97c4886b6b5f07633a731120a9b0d46894af4f46
  • master default
  • rocky-linux-9
  • development
  • v1.0.4
  • v1.0.3
  • v1.0.2
7 results

X509Data.php

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']}
    )