-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
43 lines (39 loc) · 1.46 KB
/
setup.py
File metadata and controls
43 lines (39 loc) · 1.46 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
"""Setup for deniable."""
import os
import codecs
from setuptools import setup
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
"""Return multiple read calls to different readable objects as a single
string."""
return codecs.open(os.path.join(HERE, *parts), 'r').read()
LONG_DESCRIPTION = read('README.rst')
setup(name='deniable',
version='v1.0.1',
description='Deniable encryption application of a RSA cryptosystem',
long_description=LONG_DESCRIPTION,
url='https://github.com/victormn/rsa-deniable-encryption',
author='Victor Nunes',
author_email='victor95nunes@gmail.com',
tests_require=['pytest', 'pytest-cov', 'python-coveralls'],
install_requires=['pycrypto>=2.6.1'],
license='MIT',
entry_points={
'console_scripts': [
'deniablecollision = deniable.scripts.deniablecollision:main',
'deniablekeys = deniable.scripts.deniablekeys:main',
'deniablersa = deniable.scripts.deniablersa:main',
],
},
packages=['deniable', 'deniable.scripts'],
include_package_data=True,
platforms='any',
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Natural Language :: English',
'Intended Audience :: Developers',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)