Add packaging (README and setup.py).
[pyassuan.git] / setup.py
1 # Copyright
2
3 "Python module and tools for communicating in the Assuan protocol."
4
5 from distutils.core import setup as _setup
6 import os.path as _os_path
7
8 from pyassuan import __version__
9
10
11 _this_dir = _os_path.dirname(__file__)
12
13 _setup(
14     name='pyassuan',
15     version=__version__,
16     maintainer='W. Trevor King',
17     maintainer_email='wking@drexel.edu',
18     url='http://blog.tremily.us/posts/pyassuan/',
19     download_url='http://git.tremily.us/?p=pyassuan.git;a=snapshot;h=v{};sf=tgz'.format(__version__),
20     license = 'GNU General Public License (GPL)',
21     platforms = ['all'],
22     description = __doc__,
23     long_description=open(_os_path.join(_this_dir, 'README'), 'r').read(),
24     classifiers = [
25         'Development Status :: 3 - Alpha',
26         'Intended Audience :: Developers',
27         'Operating System :: OS Independent',
28         'License :: OSI Approved :: GNU General Public License (GPL)',
29         'Programming Language :: Python :: 3',
30         'Topic :: Security :: Cryptography',
31         'Topic :: Software Development'
32         ],
33     scripts = ['bin/get-info.py', 'bin/pinentry.py'],
34     packages = ['pyassuan'],
35     provides = ['pyassuan'],
36     )