blob: d46945b049b8a124357acf17234a2e8834870203 [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
19setup(name='rsa',
Sybren A. Stüvel541ee462016-01-22 11:04:13 +010020 version='3.3',
Sybren A. Stüvel65557122015-07-29 09:22:09 +020021 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üvel0087e9b2016-01-22 10:30:20 +010026 url='https://stuvel.eu/rsa',
Sybren A. Stüvel65557122015-07-29 09:22:09 +020027 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üvel65ce6642011-07-24 19:57:19 +020053
Sybren A. Stüvel65557122015-07-29 09:22:09 +020054 )