-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
31 lines (28 loc) · 906 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
25
26
27
28
29
30
31
# encoding: utf-8
from setuptools import setup, find_packages
setup(
name='py-pag',
version='0.1.1',
description='PagSeguro lib that suports manual subscriptions',
long_description='''
O py-pag é uma pequena lib construída para facilitar a integração de assinaturas manuais no PagSeguro.
O py-pag também suporta compras pontuais e suporte a notificações do pagseguro.
''',
url='https://github.com/mbodock/py-pag',
author='Mbodock',
author_email='[email protected]',
license='MIT',
classifiers=[
'Development Status :: 3 - Alpha',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
],
keywords='pagseguro subscription',
packages=find_packages(exclude=['tests']),
install_requires=[
'arrow',
'beautifulsoup4',
'requests',
'Unidecode',
],
)