README: update nosetests-3.2 -> nosetests-3.3.
[pyassuan.git] / setup.py
1 # Copyright (C) 2012 W. Trevor King <wking@tremily.us>
2 #
3 # This file is part of pyassuan.
4 #
5 # pyassuan is free software: you can redistribute it and/or modify it under the
6 # terms of the GNU General Public License as published by the Free Software
7 # Foundation, either version 3 of the License, or (at your option) any later
8 # version.
9 #
10 # pyassuan is distributed in the hope that it will be useful, but WITHOUT ANY
11 # WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
12 # A PARTICULAR PURPOSE.  See the GNU General Public License for more details.
13 #
14 # You should have received a copy of the GNU General Public License along with
15 # pyassuan.  If not, see <http://www.gnu.org/licenses/>.
16
17 "Python module and tools for communicating in the Assuan protocol."
18
19 from distutils.core import setup as _setup
20 import os.path as _os_path
21
22 from pyassuan import __version__
23
24
25 _this_dir = _os_path.dirname(__file__)
26
27 _setup(
28     name='pyassuan',
29     version=__version__,
30     maintainer='W. Trevor King',
31     maintainer_email='wking@tremily.us',
32     url='http://blog.tremily.us/posts/pyassuan/',
33     download_url='http://git.tremily.us/?p=pyassuan.git;a=snapshot;h=v{};sf=tgz'.format(__version__),
34     license = 'GNU General Public License (GPL)',
35     platforms = ['all'],
36     description = __doc__,
37     long_description=open(_os_path.join(_this_dir, 'README'), 'r').read(),
38     classifiers = [
39         'Development Status :: 3 - Alpha',
40         'Intended Audience :: Developers',
41         'Operating System :: OS Independent',
42         'License :: OSI Approved :: GNU General Public License (GPL)',
43         'Programming Language :: Python :: 3',
44         'Programming Language :: Python :: 3.3',
45         'Topic :: Security :: Cryptography',
46         'Topic :: Software Development'
47         ],
48     scripts = ['bin/get-info.py', 'bin/pinentry.py'],
49     packages = ['pyassuan'],
50     provides = ['pyassuan'],
51     )