forked from fcurella/django-taggit-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
26 lines (24 loc) · 819 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('README.txt').read()
setup(
name='django-taggit-autocomplete',
version='0.1',
description='Autocompletion for django-taggit',
long_description=long_description,
author='Flavio Curella',
author_email='[email protected]',
url='https://github.com/fcurella/django-taggit-autocomplete',
packages=find_packages(),
include_package_data=True,
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,
)