blob: 428b14cd4aea586d43f3319faebd46eba8dd738f [file] [log] [blame]
Sybren Stüvel454261b2008-04-23 13:22:44 +02001#!/usr/bin/env python
Brian Sizemore6d96e202015-11-05 13:52:42 -05002# -*- coding: utf-8 -*-
Roy Kokkelkoren0659aac2015-10-25 16:12:11 +01003# 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üvel454261b2008-04-23 13:22:44 +020016
17from setuptools import setup
18
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010019if __name__ == '__main__':
20 setup(name='rsa',
21 version='3.3',
22 description='Pure-Python RSA implementation',
23 author='Sybren A. Stuvel',
24 author_email='sybren@stuvel.eu',
25 maintainer='Sybren A. Stuvel',
26 maintainer_email='sybren@stuvel.eu',
27 url='https://stuvel.eu/rsa',
28 packages=['rsa'],
29 license='ASL 2',
30 classifiers=[
31 'Development Status :: 5 - Production/Stable',
32 'Intended Audience :: Developers',
33 'Intended Audience :: Education',
34 'Intended Audience :: Information Technology',
35 'License :: OSI Approved :: Apache Software License',
36 'Operating System :: OS Independent',
37 'Programming Language :: Python',
38 'Programming Language :: Python :: 3',
39 'Topic :: Security :: Cryptography',
40 ],
41 install_requires=[
42 'pyasn1 >= 0.1.3',
43 ],
44 entry_points={'console_scripts': [
45 'pyrsa-priv2pub = rsa.util:private_to_public',
46 'pyrsa-keygen = rsa.cli:keygen',
47 'pyrsa-encrypt = rsa.cli:encrypt',
48 'pyrsa-decrypt = rsa.cli:decrypt',
49 'pyrsa-sign = rsa.cli:sign',
50 'pyrsa-verify = rsa.cli:verify',
51 'pyrsa-encrypt-bigfile = rsa.cli:encrypt_bigfile',
52 'pyrsa-decrypt-bigfile = rsa.cli:decrypt_bigfile',
53 ]},
Sybren A. Stüvel65ce6642011-07-24 19:57:19 +020054
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010055 )