forked from skwashd/python-acquia-cloud
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·30 lines (27 loc) · 806 Bytes
/
setup.py
File metadata and controls
executable file
·30 lines (27 loc) · 806 Bytes
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
#!/usr/bin/env python
"""Setup ACAPI package."""
from setuptools import setup
setup(
name='acapi',
version='0.2.0',
description='Acquia Cloud API client.',
author='Dave Hall',
author_email='me@davehall.com.au',
url='http://github.com/skwashd/python-acquia-cloud',
install_requires=['requests==2.5.1'],
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Topic :: Internet',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
],
packages=[
'acapi',
'acapi.resources',
],
)