blob: bd14b212c1b44c74b3c72e7db7e899fca35a1e27 [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üvelcc647c42010-02-05 09:50:15 +010019import rsa
20
Sybren Stüvel454261b2008-04-23 13:22:44 +020021setup(name='rsa',
Sybren A. Stüvel65557122015-07-29 09:22:09 +020022 version=rsa.__version__,
23 description='Pure-Python RSA implementation',
24 author='Sybren A. Stuvel',
25 author_email='sybren@stuvel.eu',
26 maintainer='Sybren A. Stuvel',
27 maintainer_email='sybren@stuvel.eu',
28 url='http://stuvel.eu/rsa',
29 packages=['rsa'],
30 license='ASL 2',
31 classifiers=[
32 'Development Status :: 5 - Production/Stable',
33 'Intended Audience :: Developers',
34 'Intended Audience :: Education',
35 'Intended Audience :: Information Technology',
36 'License :: OSI Approved :: Apache Software License',
37 'Operating System :: OS Independent',
38 'Programming Language :: Python',
39 'Programming Language :: Python :: 3',
40 'Topic :: Security :: Cryptography',
41 ],
42 install_requires=[
43 'pyasn1 >= 0.1.3',
44 ],
45 entry_points={'console_scripts': [
46 'pyrsa-priv2pub = rsa.util:private_to_public',
47 'pyrsa-keygen = rsa.cli:keygen',
48 'pyrsa-encrypt = rsa.cli:encrypt',
49 'pyrsa-decrypt = rsa.cli:decrypt',
50 'pyrsa-sign = rsa.cli:sign',
51 'pyrsa-verify = rsa.cli:verify',
52 'pyrsa-encrypt-bigfile = rsa.cli:encrypt_bigfile',
53 'pyrsa-decrypt-bigfile = rsa.cli:decrypt_bigfile',
54 ]},
Sybren A. Stüvel65ce6642011-07-24 19:57:19 +020055
Sybren A. Stüvel65557122015-07-29 09:22:09 +020056 )