forked from Jaza/django-taggit-autocomplete
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathsetup.py
25 lines (23 loc) · 780 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.txt').read()
setup(
name='django-taggit-autocomplete',
version='0.1',
description='Autocompletion for django-taggit',
long_description=long_description,
author='Jeremy Epstein',
author_email='[email protected]',
url='http://github.com/Jaza/django-taggit-autocomplete/',
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,
)