-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathsetup.py
33 lines (31 loc) · 1.23 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
from distutils.core import setup
setup(
name = "pycheddar",
packages = ["pycheddar"],
version = "0.9.3",
description = "Class objects to abstract the process of interacting with the CheddarGetter API",
author = "FeedMagnet",
author_email = "[email protected]",
url = "http://github.com/jasford/pycheddar",
keywords = ["cheddargettar", "payment", "processing"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2.6",
"Framework :: Django",
"Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
],
requires = ["httplib2(>=0.5.0)"],
install_requires = ["httplib2>=0.5.0"],
long_description = """\
A Python wrapper for CheddarGetter
----------------------------------
More just just a Python wrapper for CheddarGetter, pycheddar gives you class
objects that work a lot like Django models, making the whole experience of
integrating with CheddarGetter just a little more awesome and Pythonic.
"""
)