-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
24 lines (22 loc) · 806 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
#!/usr/bin/env python
from setuptools import setup
setup(
name='libffx',
install_requires=['gmpy', 'pycryptodome', 'six'],
test_suite='ffx.tests',
version='0.0.2',
description='Python implementation of FFX Mode of Operation for Format-Preserving Encryption',
author='Kevin P. Dyer',
author_email='[email protected]',
url='https://github.com/kpdyer/libffx',
packages=['ffx'],
classifiers=[
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Development Status :: 4 - Beta',
'Topic :: Security :: Cryptography',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU General Public License (GPL)',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)