-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
34 lines (32 loc) · 1.13 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
from setuptools import setup, find_packages
version = '0.1.5'
setup(name='multisafepay',
version=version,
description="Multisafepay integration",
long_description="""This package enables you to talk to a multisafepay
payment provider. There is not much documentation at the moment. In the
package are tests that give you a good starting point.
""",
classifiers=[
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules"],
keywords='',
author='Jan Murre',
author_email='[email protected]',
url='http://www.pareto.nl',
license='Apache',
packages=find_packages(exclude=['ez_setup', 'examples', 'tests']),
include_package_data=True,
zip_safe=False,
install_requires=[
'otto',
],
entry_points={
'console_scripts': [
"msp_serve=multisafepay.testhttpserver:main"
],
'paste.app_factory': [
'main=multisafepay.testhttpserver:app_factory', ] },
)