Select Git revision
-
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
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"
],
},
)