-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
executable file
·37 lines (32 loc) · 930 Bytes
/
setup.py
File metadata and controls
executable file
·37 lines (32 loc) · 930 Bytes
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
#!/usr/bin/env python
try:
from setuptools import setup
except ImportError:
from distutils.core import setup
from payex import __version__
# Requirements
install_requires = [
'six==1.11.0',
'suds_py3==1.3.3.0',
]
setup(
name='python3-payex',
version=__version__,
description='PayEx API wrapper',
long_description=open('README.md').read(),
author='Ivan K.',
author_email='ivankunmail@gmail.com',
url='https://github.com/devhousellc/python3-payex.git',
packages=['payex'],
license='BSD',
install_requires=install_requires,
test_suite='tests',
classifiers=(
'Development Status :: 4 - Beta',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Programming Language :: Python',
'Programming Language :: Python :: 3.6',
'Topic :: Software Development :: Libraries :: Python Modules',
)
)