-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (26 loc) · 959 Bytes
/
setup.py
File metadata and controls
29 lines (26 loc) · 959 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
import os
from setuptools import setup
here = os.path.abspath(os.path.dirname(__file__))
with open(os.path.join(here, 'README.rst')) as f:
long_desc = f.read()
setup(
name = "cacpy",
version = "0.5.1",
author = "Andy Culler",
author_email = "adc4392@gmail.com",
description = ("A python wrapper for the cloudatcost.com API - "
"https://github.com/cloudatcost/api"),
license = "MIT",
keywords = "wrapper for cloud at cost api",
url = "https://github.com/adc4392/python-cloudatcost",
download_url = "https://github.com/adc4392/python-cloudatcost/tarball/0.5",
packages = ['cacpy'],
long_description = long_desc,
classifiers = [
"Intended Audience :: Developers",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 2.7",
"License :: OSI Approved :: MIT License",
],
install_requires = ['requests']
)