-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
41 lines (38 loc) · 1.45 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from subprocess import check_output, CalledProcessError
install_requires = [
"argparse>=1.2.1",
"texttable>=0.8.1",
"lxml",
"python-dateutil",
"pytz"
]
version = "1.1.11"
setup(
name='uws-client',
version=version,
url='http://github.com/aipescience/uws-client/',
download_url='http://github.com/aipescience/uws-client/archive/%s.tar.gz' % version,
packages=find_packages(),
license=u'Apache License (2.0)',
author=u'Adrian M. Partl',
author_email='[email protected]',
maintainer=u'AIP E-Science',
maintainer_email=u'[email protected]',
description=u'A command line client for IVOA UWS services, plus models for development',
long_description='This is a client for IVOA Virtual Observatroy UWS services. It can be used to access UWS services directly or through Basic Authentication. Please visit https://github.com/aipescience/uws-client/blob/master/README.md for how to use the software.',
include_package_data=True,
install_requires=install_requires,
entry_points={
'console_scripts': ['uws = uws.cli.main:main'],
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Science/Research',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7',
]
)