Select Git revision
ConfigurableTAPServlet.java
-
gmantele authored
[TAP] Add Javadoc for all TAP configuration file related classes + Improve the function ConfigurableServiceConnection.getFile(...) + Set the default value of limits/durations/periods to the maximum value if the new maximum value is less than the current default value.
gmantele authored[TAP] Add Javadoc for all TAP configuration file related classes + Improve the function ConfigurableServiceConnection.getFile(...) + Set the default value of limits/durations/periods to the maximum value if the new maximum value is less than the current default value.
setup.py 618 B
# coding: utf-8
import sys
from setuptools import setup, find_packages
NAME = "Ale"
VERSION = "0.3.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']}
)