A somewhat usable and tested version.
[django-ssify.git] / setup.py
index d549279..b9e6332 100755 (executable)
--- a/setup.py
+++ b/setup.py
@@ -1,5 +1,7 @@
 #!/usr/bin/env python
 # -*- coding: utf-8 -*-
+# This file is part of django-ssify, licensed under GNU Affero GPLv3 or later.
+# Copyright © Fundacja Nowoczesna Polska. See README.md for more information.
 #
 from setuptools import setup, find_packages
 
@@ -13,6 +15,9 @@ setup(
     license='LICENSE',
     description='Two-phased rendering using SSI.',
     long_description=open('README.md').read(),
+    install_requires=[
+        'Django>=1.4',
+        ],
     test_suite="runtests.runtests",
     classifiers=[
         "Development Status :: 3 - Alpha",
@@ -22,6 +27,13 @@ setup(
         "Intended Audience :: System Administrators",
         "License :: OSI Approved :: GNU Affero General Public License v3",
         "Programming Language :: Python",
+        "Programming Language :: Python :: 2",
+        "Programming Language :: Python :: 2.6",
+        "Programming Language :: Python :: 2.7",
+        "Programming Language :: Python :: 3",
+        "Programming Language :: Python :: 3.2",
+        "Programming Language :: Python :: 3.3",
+        "Programming Language :: Python :: 3.4",
         "Topic :: Internet :: WWW/HTTP",
         "Topic :: Software Development :: Code Generators",
     ]