forked from nemesifier/django-tagging-autocomplete-tag-it
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
32 lines (29 loc) · 1.01 KB
/
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
32
# -*- coding: utf-8 -*-
import os
from setuptools import setup, find_packages
long_description = open('README.markdown').read()
# allow setup.py to be run from any path
os.chdir(os.path.normpath(os.path.join(os.path.abspath(__file__), os.pardir)))
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(),
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,
#package_data={},
#test_suite='tagging_autocomplete.tests.runtests.runtests'
)