-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
27 lines (25 loc) · 868 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
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
long_description = open('README.txt').read()
setup(
name='django-tagging-autocomplete',
version='0.3.1',
description='Autocompletion for django-tagging',
long_description=long_description,
author='Ludwik Trammer',
author_email='[email protected]',
url='http://code.google.com/p/django-tagging-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,
#package_data={},
#test_suite='tagging_autocomplete.tests.runtests.runtests'
)