Update manifest
[django-ssify.git] / setup.py
1 #!/usr/bin/env python
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.
5 #
6 from setuptools import setup, find_packages
7
8 setup(
9     name='django-ssify',
10     version='0.1',
11     author='Radek Czajka',
12     author_email='radekczajka@nowoczesnapolska.org.pl',
13     url='http://git.nowoczesnapolska.org.pl/?p=django-ssify.git',
14     packages=find_packages(exclude=['tests*']),
15     license='LICENSE',
16     description='Two-phased rendering using SSI.',
17     long_description=open('README.md').read(),
18     install_requires=[
19         'Django>=1.4',
20         ],
21     test_suite="runtests.runtests",
22     classifiers=[
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 or later (AGPLv3+)",
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",
39     ]
40 )