-
Notifications
You must be signed in to change notification settings - Fork 10
/
setup.py
29 lines (27 loc) · 1.03 KB
/
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
from setuptools import setup, find_packages
from lenticrypt import VERSION
setup(
name='lenticrypt',
description='A simple cryptosystem that provides provable plausibly deniable encryption. Lenticrypt can generate a single ciphertext file such that different plaintexts are generated depending on which key is used for decryption.',
url='https://github.com/ESultanik/lenticrypt',
author='Evan Sultanik',
version=VERSION,
packages=find_packages(exclude=["*.tests", "*.tests.*", "tests.*", "tests"]),
python_requires='>=3.6',
install_requires=[],
extras_require={},
entry_points={
'console_scripts': [
'lenticrypt = lenticrypt.__main__:main'
]
},
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Console',
'Intended Audience :: Developers',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v2 (GPLv2)',
'Topic :: Security :: Cryptography'
],
test_suite="tests"
)