forked from althalus/django-favorites
-
Notifications
You must be signed in to change notification settings - Fork 6
/
setup.py
32 lines (27 loc) · 964 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
27
28
29
30
31
32
from distutils.core import setup
import os
modules = [
'favorites.templatetags',
'favorites.templates.favorites',
]
setup(
name = 'favorites',
version = '0.3.2',
description = 'Generic favorites application for Django',
author = 'Djaz Team',
author_email = '[email protected]',
packages = ['favorites'] + modules,
include_package_data=True,
package_data = {
'': ['*.txt', '*.rst'],
'favorites': ['templates/favorites/*.html'],
},
classifiers = ['Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: GNU Library or Lesser General Public License (LGPL)',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Utilities'],
)