forked from wadey/fpys2
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
36 lines (32 loc) · 1.36 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
from ez_setup import use_setuptools
use_setuptools()
from setuptools import setup, find_packages
setup(name = "FPyS2",
version = "0.6",
description = "Amazon FPS Library (version 2008-09-17)",
author = "Travis Fischer",
author_email = "[email protected]",
url = "http://github.com/travisfischer/fpys2",
packages = ["fpys2"],
test_suite = "fpys2.tests",
install_requires = ["wsgi_intercept",
],
entry_points = {},
license = 'MIT License',
long_description = """\
FPyS is a library for interacting with the Amazon Flexible Payment Service.
FPys communicates with the service via the available REST interface. It handles the
details of request signing and response parsing for the application developer.
An Amazon web services account is required to begin working with FPyS in the development
environment. An approved account is required to move software into production.
Development Trac: http://fpys.achievewith.us
Mailing List: http://groups.google.com/group/fpys/
""",
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
])