-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathsetup.py
31 lines (23 loc) · 995 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
from setuptools import setup
setup(name='bpc8583',
version='1.60',
description='ISO8583 library and tools (BPC\'s flavour)',
long_description=open('README.rst').read(),
classifiers=[
'License :: OSI Approved :: GNU Lesser General Public License v2 (LGPLv2)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Topic :: Communications',
'Intended Audience :: Developers',
],
keywords='POS ISO8583 banking financial payment',
url='https://github.com/timgabets/bpc8583',
author='Tim Gabets',
author_email='tim@gabets.ru',
license='LGPLv2',
packages=['bpc8583'],
install_requires=['enum34', 'pycrypto', 'pytlv', 'tracetools', 'pynblock'],
zip_safe=True)