-
Notifications
You must be signed in to change notification settings - Fork 7
/
Copy pathsetup.py
40 lines (39 loc) · 1.55 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
"""Setup information for the Skytap API package."""
from setuptools import find_packages
from setuptools import setup
setup(
name='skytap',
packages=find_packages(),
version='1.4.0',
description='Skytap REST API access modules',
author='Bill Wellington, Michael Knowles, and Caleb Hawkins',
test_suite='nose.collector',
author_email='bill@wellingtonnet.net',
maintainer='Michael Knowles',
maintainer_email='michael@mapledyne.com',
license='MIT',
install_requires=['requests', 'six'],
scripts=['bin/skytap'],
url='https://github.com/mapledyne/skytap',
download_url='https://github.com/mapledyne/skytap/tarball/v1.4.0',
keywords=['skytap', 'cloud', 'client', 'rest', 'api', 'development'],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3.3",
"Programming Language :: Python :: 3.4",
"Programming Language :: Python :: 3.5",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Natural Language :: English",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: System :: Systems Administration",
"Topic :: Internet"
]
)