blob: f704dd1963b6d4eb9e581b7f1c01b2e8121da654 [file] [log] [blame]
Sybren Stüvel454261b2008-04-23 13:22:44 +02001#!/usr/bin/env python
2# -*- coding: utf-8 -*-
3
4from setuptools import setup
5
6setup(name='rsa',
7 version='1.1',
8 description='Pure-Python RSA implementation',
9 author=u'Sybren Stüvel'.encode('utf-8'),
10 author_email='sybren@stuvel.eu',
11 maintainer=u'Sybren Stüvel'.encode('utf-8'),
12 maintainer_email='sybren@stuvel.eu',
13 url='http://www.stuvel.eu/rsa',
14 packages=['rsa'],
15 license='GPL',
16 classifiers=[
17 'Development Status :: 5 - Beta',
18 'Intended Audience :: End Users/Desktop',
19 'License :: OSI Approved :: GNU General Public License (GPL)',
20 'Operating System :: OS Independent',
21 'Programming Language :: Python',
22 'Topic :: Multimedia :: Graphics :: Capture :: Digital Camera',
23 'Topic :: Artistic Software',
24 'Natural Language :: English',
25 ],
26)