1#!/usr/bin/env python
2
3from setuptools import setup
4
5import rsa
6
7setup(name='rsa',
8	version=rsa.__version__,
9    description='Pure-Python RSA implementation',
10    author='Sybren A. Stuvel',
11    author_email='sybren@stuvel.eu',
12    maintainer='Sybren A. Stuvel',
13    maintainer_email='sybren@stuvel.eu',
14	url='http://stuvel.eu/rsa',
15	packages=['rsa'],
16    license='ASL 2',
17    classifiers=[
18        'Development Status :: 5 - Production/Stable',
19        'Intended Audience :: Developers',
20        'Intended Audience :: Education',
21        'Intended Audience :: Information Technology',
22        'License :: OSI Approved :: Apache Software License',
23        'Operating System :: OS Independent',
24        'Programming Language :: Python',
25        'Topic :: Security :: Cryptography',
26    ],
27    install_requires=[
28        'pyasn1 >= 0.1.3',
29    ],
30    entry_points={ 'console_scripts': [
31        'pyrsa-priv2pub = rsa.util:private_to_public',
32        'pyrsa-keygen = rsa.cli:keygen',
33        'pyrsa-encrypt = rsa.cli:encrypt',
34        'pyrsa-decrypt = rsa.cli:decrypt',
35        'pyrsa-sign = rsa.cli:sign',
36        'pyrsa-verify = rsa.cli:verify',
37        'pyrsa-encrypt-bigfile = rsa.cli:encrypt_bigfile',
38        'pyrsa-decrypt-bigfile = rsa.cli:decrypt_bigfile',
39    ]},
40
41)
42