X-Git-Url: https://git.mdrn.pl/fnpdjango.git/blobdiff_plain/28b1d7e9f4a7008712736adce363ca2770d48aea..HEAD:/setup.py diff --git a/setup.py b/setup.py index adb30aa..1865b06 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.3', + version='0.7', 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,<2.0', - 'textile==2.3.16', + 'Django>=2.0,<5.0', ], + extras_require={ + 'textile': [ + 'textile>=4.0.2', + ], + 'pipeline': [ + 'pipeline', + ], + }, license='LICENSE', description='.', long_description="",