Initial commit.
[django-ssify.git] / setup.py
1 #!/usr/bin/env python
2 # -*- coding: utf-8 -*-
3 #
4 from setuptools import setup, find_packages
5
6 setup(
7     name='django-ssify',
8     version='0.1',
9     author='Radek Czajka',
10     author_email='radekczajka@nowoczesnapolska.org.pl',
11     url='',
12     packages=find_packages(exclude=['tests*']),
13     license='LICENSE',
14     description='Two-phased rendering using SSI.',
15     long_description=open('README.md').read(),
16     test_suite="runtests.runtests",
17     classifiers=[
18         "Development Status :: 3 - Alpha",
19         "Environment :: Web Environment",
20         "Framework :: Django",
21         "Intended Audience :: Developers",
22         "Intended Audience :: System Administrators",
23         "License :: OSI Approved :: GNU Affero General Public License v3",
24         "Programming Language :: Python",
25         "Topic :: Internet :: WWW/HTTP",
26         "Topic :: Software Development :: Code Generators",
27     ]
28 )