setup(
name='django-ssify',
- version='0.1',
+ version='0.2.2',
author='Radek Czajka',
author_email='radekczajka@nowoczesnapolska.org.pl',
- url='',
+ url='http://git.mdrn.pl/django-ssify.git',
packages=find_packages(exclude=['tests*']),
+ package_data={'ssify': ['templates/ssify/*.html']},
license='LICENSE',
description='Two-phased rendering using SSI.',
long_description=open('README.md').read(),
install_requires=[
- 'Django>=1.4',
+ 'Django>=1.5',
],
test_suite="runtests.runtests",
classifiers=[
- "Development Status :: 3 - Alpha",
+ "Development Status :: 4 - Beta",
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
- "License :: OSI Approved :: GNU Affero General Public License v3",
+ "License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 3.4",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Code Generators",
- ]
+ ],
+ zip_safe=False,
)