forked from timgabets/pytlv
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (23 loc) · 900 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='pytlv',
version='0.69',
description='TLV(tag length lavue) data parser',
long_description=open('README.md').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='EMV TLV parse',
url='https://github.com/timgabets/pytlv',
author='Tim Gabets',
author_email='[email protected]',
license='LGPLv2',
packages=['pytlv'],
install_requires=[],
zip_safe=True)