Add long_description (REAMDE) to setup.py.
[insider.git] / setup.py
1 #!/usr/bin/env python
2
3 'Transaction-tracking application for Django'
4
5 from distutils.core import setup
6 import os.path
7
8
9 _this_dir = os.path.dirname(__file__)
10
11 setup(
12     name='insider',
13     version='0.1',
14     description=__doc__,
15     long_description=open(os.path.join(_this_dir, 'README'), 'r').read(),
16     author='W. Trevor King',
17     author_email='wking@drexel.edu',
18     license='GPL',
19     url='http://physics.drexel.edu/~wking/unfolding-disasters/posts/insider/',
20     packages=['web', 'web.insider'],
21     classifiers=[
22         'Environment :: Web Environment',
23         'Framework :: Django',
24         'Intended Audience :: Developers',
25         'License :: OSI Approved :: GNU General Public License (GPL)',
26         'Operating System :: OS Independent',
27         'Programming Language :: Python',
28         'Topic :: Internet :: WWW/HTTP',
29         'Topic :: Software Development :: Libraries',
30     ],
31 )