-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (27 loc) · 1014 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
from setuptools import setup
setup(
name = "pyCryptoAdapter",
version = "1.0",
py_modules = ['CipherAdapter'],
test_suite = 'tests',
install_requires = ['pycryptodomex>=3.9', 'twofish>=0.3.0'],
author = "Willem Hengeveld",
author_email = "itsme@xs4all.nl",
description = "PyCrypto Cipher Adapter",
license = "MIT",
keywords = "Crypto",
url = "https://github.com/nlitsme/pyCryptoAdapter/",
long_description = "Baseclass for adding new ciphers to pyCrypto",
classifiers = [
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'License :: OSI Approved :: Python Software Foundation License',
'License :: OSI Approved :: MIT License',
'Operating System :: MacOS :: MacOS X',
'Operating System :: Microsoft :: Windows',
'Operating System :: POSIX',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.5',
],
)