forked from jjmalina/django-taggit-autosuggest-select2
-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
31 lines (27 loc) · 887 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('README.txt').read()
setup(
name='django-taggit-autosuggest-select2',
version='0.1',
description='Autosuggestions for django-taggit',
long_description=long_description,
author='Fabian Topfstedt',
author_email='[email protected]',
url='https://bitbucket.org/fabian/django-taggit-autosuggest',
packages=find_packages(),
include_package_data=True,
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
],
zip_safe=False,
install_requires=[
'django-taggit',
],
)