blob: 1ec0268dc9d9a1f5f6a1377d470742d479a32fa2 [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',
Sybren A. Stüveld9dbf6e2016-01-27 18:23:01 +010038 'Programming Language :: Python :: 2',
39 'Programming Language :: Python :: 2.6',
40 'Programming Language :: Python :: 2.7',
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010041 'Programming Language :: Python :: 3',
Sybren A. Stüveld9dbf6e2016-01-27 18:23:01 +010042 'Programming Language :: Python :: 3.3',
43 'Programming Language :: Python :: 3.4',
44 'Programming Language :: Python :: 3.5',
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010045 'Topic :: Security :: Cryptography',
46 ],
47 install_requires=[
48 'pyasn1 >= 0.1.3',
49 ],
50 entry_points={'console_scripts': [
51 'pyrsa-priv2pub = rsa.util:private_to_public',
52 'pyrsa-keygen = rsa.cli:keygen',
53 'pyrsa-encrypt = rsa.cli:encrypt',
54 'pyrsa-decrypt = rsa.cli:decrypt',
55 'pyrsa-sign = rsa.cli:sign',
56 'pyrsa-verify = rsa.cli:verify',
57 'pyrsa-encrypt-bigfile = rsa.cli:encrypt_bigfile',
58 'pyrsa-decrypt-bigfile = rsa.cli:decrypt_bigfile',
59 ]},
Sybren A. Stüvel65ce6642011-07-24 19:57:19 +020060
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010061 )