forked from bkjones/django-taxonomy
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
26 lines (25 loc) · 741 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#!/usr/bin/env python
# -*- coding: utf-8 -*-
from distutils.core import setup
setup(
name='django-taxonomy',
version='0.0.1',
description='A flexible taxonomy approach for Django.',
author='Brian K. Jones',
author_email='[email protected]',
url='http://github.com/bkjones/django-taxonomy',
packages=[
'taxonomy',
'taxonomy.templatetags',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License'
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'
],
)