forked from lincolnloop/django-ttag
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
35 lines (34 loc) · 1.04 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
from setuptools import setup
from ttag import get_version
setup(
name='django-ttag',
version=get_version(),
description="A template tag constructor library for Django.",
long_description=open('README.rst').read(),
author='Chris Beaven',
author_email='[email protected]',
license='MIT',
url='http://github.com/lincolnloop/django-ttag',
install_requires=[
'six',
],
packages=[
'ttag',
'ttag.tests',
'ttag.tests.ttag_test_app',
'ttag.tests.ttag_test_app.templatetags',
'ttag.tests.ttag_test_app.templatetags.ttag_test',
'ttag.helpers',
],
classifiers=[
'Development Status :: 4 - Beta',
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: BSD License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 3',
'Framework :: Django',
],
)