Bug 1247796. Use keyboardFocusIndicatorColor for ActiveBorder system color keyword...
[gecko.git] / python / rsa / setup.py
blob8a2df8d1f8a7427d1ac9e20c884bfc4b76eefb35
1 #!/usr/bin/env python
3 from setuptools import setup
5 import rsa
7 setup(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',
27 install_requires=[
28 'pyasn1 >= 0.1.3',
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 ]},