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