-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathsetup.py
46 lines (41 loc) · 1.39 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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
readme = open('README.md').read()
with open('requirements.txt') as reqs:
requirements = reqs.read().split()
setup(
name='pagseguro',
version='0.3.4',
description='Pagseguro API v2 wrapper',
author='Bruno Rocha',
author_email='[email protected]',
url='https://github.com/rochacbruno/python-pagseguro',
packages=['pagseguro', ],
package_dir={'pagseguro': 'pagseguro'},
include_package_data=True,
install_requires=requirements,
long_description=readme,
long_description_content_type='text/markdown',
license='MIT',
test_suite='tests',
zip_safe=False,
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'Natural Language :: English',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.6',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7',
],
keywords='pagseguro, payment, payments, credit-card'
)