2 # -*- coding: utf-8 -*-
3 # This file is part of django-ssify, licensed under GNU Affero GPLv3 or later.
4 # Copyright © Fundacja Nowoczesna Polska. See README.md for more information.
6 from setuptools import setup, find_packages
11 author='Radek Czajka',
12 author_email='radekczajka@nowoczesnapolska.org.pl',
14 packages=find_packages(exclude=['tests*']),
16 description='Two-phased rendering using SSI.',
17 long_description=open('README.md').read(),
21 test_suite="runtests.runtests",
23 "Development Status :: 3 - Alpha",
24 "Environment :: Web Environment",
25 "Framework :: Django",
26 "Intended Audience :: Developers",
27 "Intended Audience :: System Administrators",
28 "License :: OSI Approved :: GNU Affero General Public License v3",
29 "Programming Language :: Python",
30 "Programming Language :: Python :: 2",
31 "Programming Language :: Python :: 2.6",
32 "Programming Language :: Python :: 2.7",
33 "Programming Language :: Python :: 3",
34 "Programming Language :: Python :: 3.2",
35 "Programming Language :: Python :: 3.3",
36 "Programming Language :: Python :: 3.4",
37 "Topic :: Internet :: WWW/HTTP",
38 "Topic :: Software Development :: Code Generators",