forked from ludwiktrammer/django-tagging-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (30 loc) · 1.03 KB
/
setup.py
File metadata and controls
32 lines (30 loc) · 1.03 KB
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
# -*- coding: utf-8 -*-
from distutils.core import setup
long_description = open('README.rst').read()
setup(
name='django-tagging_autocomplete',
version='0.3.1',
description='Autocompletion for django-tagging',
long_description=long_description,
author='Ludwik Trammer',
author_email='ludwik@gmail.com',
url='http://code.google.com/p/django-tagging-autocomplete/',
packages=['tagging_autocomplete'],
classifiers=[
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
package_data={
'tagging_autocomplete': [
'static/tagging_autocomplete/js/*.js',
'static/tagging_autocomplete/css/*.css',
'static/tagging_autocomplete/css/base/*.css',
'static/tagging_autocomplete/css/base/images/*.png',
]
},
)