X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/fdb7cb5b801cce2e15c851f272f3f4f1efa48ce8..fb91cca331c5214a808d27a283b5dad2e4fc73d1:/setup.py diff --git a/setup.py b/setup.py index 0190709..6f3d8ee 100755 --- a/setup.py +++ b/setup.py @@ -1,5 +1,4 @@ #!/usr/bin/env python -# -*- coding: utf-8 -*- # import os.path from setuptools import setup, find_packages @@ -23,7 +22,7 @@ def whole_trees(package_dir, paths): setup( name='fnpdjango', - version='0.2.4', + version='0.6', author='Radek Czajka', author_email='radekczajka@nowoczesnapolska.org.pl', url='', @@ -33,9 +32,16 @@ setup( 'fnpdjango.management.commands': ['babel.cfg'], }, install_requires=[ - 'Django>=1.4,<1.11', - 'textile==2.3.7', + 'Django>=1.11,<4.1', ], + extras_require={ + 'textile': [ + 'textile==2.3.16', + ], + 'pipeline': [ + 'pipeline', + ], + }, license='LICENSE', description='.', long_description="",