forked from collective/getpaid.pxpay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
67 lines (60 loc) · 1.97 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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
"""
$Id: setup.py 1868 2008-08-22 22:00:38Z fairwinds.dp $
Copyright (c) 2007 - 2008 ifPeople, Kapil Thangavelu, and Contributors
All rights reserved. Refer to LICENSE.txt for details of distribution and use.
Distutils setup
"""
import os
from setuptools import setup, find_packages
def read(*rnames):
return open(os.path.join(os.path.dirname(__file__), *rnames)).read()
setup(
name="getpaid.pxpay",
version="0.5",
author='getpaid community',
author_email='[email protected]',
classifiers=[
"Framework :: Plone",
"Programming Language :: Python",
"Framework :: Zope3",
"Intended Audience :: Developers",
"License :: OSI Approved :: Zope Public License",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Financial",
"Topic :: Software Development :: Libraries",
],
long_description = (
read('README.txt')
+ '\n' +
read('CHANGES.txt')
+ '\n' +
'Detailed Documentation\n'
'**********************\n'
+ '\n' +
read('src', 'getpaid', 'pxpay', 'README.txt')
+ '\n' +
'Download\n'
'**********************\n'
),
packages=find_packages('src'),
package_dir={'':'src'},
description = "PXPay payment plugin",
license = "ZPL",
keywords = "getpaid pxpay payment",
namespace_packages=['getpaid'],
include_package_data=True,
install_requires = [ 'setuptools',
'getpaid.core',
'getpaid.wizard',
'zope.interface',
'zope.component',
'zope.formlib',
'zc.ssl',
'zc.table',
'elementtree',
'Products.PloneGetPaid',
'hurry.workflow',
'zope.schema',
],
zip_safe = False,
)