Sybren Stüvel | 454261b | 2008-04-23 13:22:44 +0200 | [diff] [blame] | 1 | #!/usr/bin/env python |
Brian Sizemore | 6d96e20 | 2015-11-05 13:52:42 -0500 | [diff] [blame] | 2 | # -*- coding: utf-8 -*- |
Roy Kokkelkoren | 0659aac | 2015-10-25 16:12:11 +0100 | [diff] [blame] | 3 | # Copyright 2011 Sybren A. Stüvel <sybren@stuvel.eu> |
| 4 | # |
| 5 | # Licensed under the Apache License, Version 2.0 (the "License"); |
| 6 | # you may not use this file except in compliance with the License. |
| 7 | # You may obtain a copy of the License at |
| 8 | # |
| 9 | # http://www.apache.org/licenses/LICENSE-2.0 |
| 10 | # |
| 11 | # Unless required by applicable law or agreed to in writing, software |
| 12 | # distributed under the License is distributed on an "AS IS" BASIS, |
| 13 | # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 14 | # See the License for the specific language governing permissions and |
| 15 | # limitations under the License. |
Sybren Stüvel | 454261b | 2008-04-23 13:22:44 +0200 | [diff] [blame] | 16 | |
| 17 | from setuptools import setup |
| 18 | |
| 19 | setup(name='rsa', |
Sybren A. Stüvel | 541ee46 | 2016-01-22 11:04:13 +0100 | [diff] [blame^] | 20 | version='3.3', |
Sybren A. Stüvel | 6555712 | 2015-07-29 09:22:09 +0200 | [diff] [blame] | 21 | description='Pure-Python RSA implementation', |
| 22 | author='Sybren A. Stuvel', |
| 23 | author_email='sybren@stuvel.eu', |
| 24 | maintainer='Sybren A. Stuvel', |
| 25 | maintainer_email='sybren@stuvel.eu', |
Sybren A. Stüvel | 0087e9b | 2016-01-22 10:30:20 +0100 | [diff] [blame] | 26 | url='https://stuvel.eu/rsa', |
Sybren A. Stüvel | 6555712 | 2015-07-29 09:22:09 +0200 | [diff] [blame] | 27 | packages=['rsa'], |
| 28 | license='ASL 2', |
| 29 | classifiers=[ |
| 30 | 'Development Status :: 5 - Production/Stable', |
| 31 | 'Intended Audience :: Developers', |
| 32 | 'Intended Audience :: Education', |
| 33 | 'Intended Audience :: Information Technology', |
| 34 | 'License :: OSI Approved :: Apache Software License', |
| 35 | 'Operating System :: OS Independent', |
| 36 | 'Programming Language :: Python', |
| 37 | 'Programming Language :: Python :: 3', |
| 38 | 'Topic :: Security :: Cryptography', |
| 39 | ], |
| 40 | install_requires=[ |
| 41 | 'pyasn1 >= 0.1.3', |
| 42 | ], |
| 43 | entry_points={'console_scripts': [ |
| 44 | 'pyrsa-priv2pub = rsa.util:private_to_public', |
| 45 | 'pyrsa-keygen = rsa.cli:keygen', |
| 46 | 'pyrsa-encrypt = rsa.cli:encrypt', |
| 47 | 'pyrsa-decrypt = rsa.cli:decrypt', |
| 48 | 'pyrsa-sign = rsa.cli:sign', |
| 49 | 'pyrsa-verify = rsa.cli:verify', |
| 50 | 'pyrsa-encrypt-bigfile = rsa.cli:encrypt_bigfile', |
| 51 | 'pyrsa-decrypt-bigfile = rsa.cli:decrypt_bigfile', |
| 52 | ]}, |
Sybren A. Stüvel | 65ce664 | 2011-07-24 19:57:19 +0200 | [diff] [blame] | 53 | |
Sybren A. Stüvel | 6555712 | 2015-07-29 09:22:09 +0200 | [diff] [blame] | 54 | ) |