-
Notifications
You must be signed in to change notification settings - Fork 39
/
Copy pathsetup.py
49 lines (44 loc) · 1.47 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
__version__ = '2.1.1'
__description__ = 'Pagar.me Python'
__long_description__ = 'Python library for the pagar.me gateway'
__author__ = 'Allisson Azevedo, Marcus Bodock, Igor P. Leroy'
__author_email__ = 'allisson@gmail.com, mbodock@gmail.com, ip.leroy@gmail.com'
requires = [i.strip() for i in open("requirements.txt").readlines()]
testing_extras = [
'pytest',
'pytest-cov',
]
setup(
name='pagarme-python',
version=__version__,
author=__author__,
author_email=__author_email__,
packages=find_packages(),
license='MIT',
description=__description__,
long_description=__long_description__,
url='https://github.com/pagarme/pagarme-python',
keywords='Payment, pagarme',
include_package_data=True,
zip_safe=False,
install_requires=requires,
classifiers=[
'Intended Audience :: Developers',
'Intended Audience :: System Administrators',
'Operating System :: OS Independent',
'Topic :: Software Development',
'Environment :: Web Environment',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.2',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'License :: OSI Approved :: MIT License',
],
tests_require=['pytest'],
extras_require={
'testing': testing_extras,
},
)