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