forked from nemesifier/django-tagging-autocomplete-tag-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 loc) · 881 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
from tagging_autosuggest.version import __version__
setup(
name='django-autosuggest',
version=__version__,
description='Autocompletion for django-tagging',
long_description=open('README.rst').read(),
author='Ludwik Trammer',
author_email='ludwik@gmail.com',
url='http://code.google.com/p/django-tagging-autocomplete/',
packages=find_packages(),
include_package_data=True,
requires=[
'django (>=1.4)',
'tagging (>=0.5.0)',
],
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',
],
)