-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (35 loc) · 1.23 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
37
38
39
40
import sys
try:
import multiprocessing, logging
except:
print("A more recent version of Python is needed.")
sys.exit(1)
from setuptools import setup, find_packages
setup(
name = 'django-runtime-tags',
version = '0.1.6',
description = 'Set template tags via Django admin interface',
long_description = open('README.rst').read(),
keywords = 'Django runtime template tags',
url = 'http://pypi.python.org/pypi/django-runtime-tags/',
author = 'Liam Kirsher',
author_email = '[email protected]',
zip_safe = False,
packages = find_packages(exclude=['tests', 'examples']),
include_package_data = True,
exclude_package_data = {'': ['.gitignore']},
install_requires = [ 'Django'],
setup_requires = [ 'setuptools_git >= 0.3', ],
tests_require = ['nose'],
test_suite = 'nose.collector',
classifiers = [
'Development Status :: 3 - Alpha',
'Environment :: Web Environment',
#'Framework :: Django',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Natural Language :: English',
'Programming Language :: Python',
'Topic :: Software Development :: Libraries :: Python Modules',
],
)