forked from kliment/pymill
-
Notifications
You must be signed in to change notification settings - Fork 18
/
setup.py
executable file
·24 lines (24 loc) · 926 Bytes
/
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
__author__ = 'yalnazov'
from setuptools import setup
setup(
name='paymill-wrapper',
version='2.4.1',
description='Python wrapper for PAYMILL API',
author='Aleksandar Yalnazov',
author_email='[email protected]',
url='https://github.com/paymill/paymill-python',
license='MIT',
packages=['paymill', 'paymill.models', 'paymill.services', 'paymill.utils'],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 3',
'License :: OSI Approved :: MIT License',
'Topic :: Internet :: WWW/HTTP',
'Topic :: Software Development :: Libraries :: Python Modules',
],
install_requires=['requests >= 2.1.0', 'paymill-jsonobject>=0.7.1beta']
)