blob: dc237c881c928ac25f59b99d041c274f1d167639 [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#
Sybren A. Stüvel3934ab42016-02-05 16:01:20 +01009# https://www.apache.org/licenses/LICENSE-2.0
Roy Kokkelkoren0659aac2015-10-25 16:12:11 +010010#
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',
Sybren A. Stüvel5d660322016-03-17 15:16:18 +010021 version='4.0-alpha',
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010022 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',
Hugo3bdc82e2017-10-22 18:02:24 +030038 'Programming Language :: Python :: 2',
Sybren A. Stüveld9dbf6e2016-01-27 18:23:01 +010039 'Programming Language :: Python :: 2.7',
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010040 'Programming Language :: Python :: 3',
Sybren A. Stüveld9dbf6e2016-01-27 18:23:01 +010041 'Programming Language :: Python :: 3.4',
42 'Programming Language :: Python :: 3.5',
Jon Banafatoc0b7bff2017-06-29 10:55:06 -040043 'Programming Language :: Python :: 3.6',
Hugo3bdc82e2017-10-22 18:02:24 +030044 'Programming Language :: Python :: Implementation :: CPython',
45 'Programming Language :: Python :: Implementation :: PyPy',
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010046 'Topic :: Security :: Cryptography',
47 ],
48 install_requires=[
49 'pyasn1 >= 0.1.3',
50 ],
51 entry_points={'console_scripts': [
52 'pyrsa-priv2pub = rsa.util:private_to_public',
53 'pyrsa-keygen = rsa.cli:keygen',
54 'pyrsa-encrypt = rsa.cli:encrypt',
55 'pyrsa-decrypt = rsa.cli:decrypt',
56 'pyrsa-sign = rsa.cli:sign',
57 'pyrsa-verify = rsa.cli:verify',
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010058 ]},
Sybren A. Stüvel65ce6642011-07-24 19:57:19 +020059
Sybren A. Stüvelf95dbb72016-01-22 12:19:09 +010060 )