forked from jtrain/django-taggit-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathsetup.py
25 lines (23 loc) · 782 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('README.md').read()
setup(
name='django-taggit-autocomplete',
version='0.1',
description='Autocompletion for django-taggit',
long_description=long_description,
author=u'Iván Raskovsky',
author_email='raskovsky@gmail.com',
url='https://github.com/rasca/django-taggit-jquery-tag-it',
packages=find_packages(),
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',
],
zip_safe=False,
)