-
Notifications
You must be signed in to change notification settings - Fork 44
/
setup.py
executable file
·36 lines (34 loc) · 1.27 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
33
34
35
36
from setuptools import setup, find_packages
import sys, os
from taggit_templatetags import VERSION
setup(name='django-taggit-templatetags',
version=".".join(map(str, VERSION)),
description="Templatetags for django-taggit.",
long_description=open(os.path.join(os.path.dirname(__file__), 'README.rst')).read(),
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Framework :: Django',
], # Get strings from http://pypi.python.org/pypi?%3Aaction=list_classifiers
keywords='django taggit tags tagcloud taglist tagging tag',
author='Julian Moritz',
author_email='[email protected]',
url='http://github.com/feuervogel/django-taggit-templatetags',
license='BSD',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=[
'django >= 1.1',
'django-taggit >= 0.8',
'django-templatetag-sugar >= 0.1'
],
entry_points="""
# -*- Entry points: -*-
""",
test_suite = "runtests.runtests"
)