-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
31 lines (23 loc) · 1010 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='pynblock',
version='0.26',
description='Payment card industry crypto library - PIN blocks, card/PIN verification values calculation etc.',
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='payment crypto card pin cvv csc pinblock',
url='https://github.com/timgabets/pynblock',
author='Tim Gabets',
author_email='[email protected]',
license='LGPLv2',
packages=['pynblock'],
install_requires=['pycrypto'],
zip_safe=True)