This repository has been archived on 2026-03-24. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
TP-NSM/python/DES-20221006/setup.py
2022-10-10 13:00:38 +02:00

24 lines
769 B
Python

#!/usr/bin/env python
from distutils.core import setup
setup(name="pyDes",
version="2.0.1",
description="Pure python implementation of DES and TRIPLE DES encryption algorithm",
author="Todd Whiteman",
author_email="twhitema@gmail.com",
license='MIT',
url="http://twhiteman.netfirms.com/des.html",
classifiers=[
'Development Status :: 6 - Mature'
'License :: OSI Approved :: MIT License',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Topic :: Security :: Cryptography',
],
platforms=["All"],
keywords=["DES", "TRIPLE-DES", "ENCRYPTION", "ALGORITHM", "SECURITY"],
py_modules=["pyDes"]
)