From 70a2bc0e58c211bdd86e89abd29ec12b2387b6fa Mon Sep 17 00:00:00 2001 From: Benoit Calvez Date: Wed, 22 May 2013 14:39:44 +0200 Subject: [PATCH] Fix MarkupSafe case in setup.py Most of pypi mirrors don't allow wrong package name case when installing them using pip example: c.pypi.python.org I know, this is very painful --- setup.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/setup.py b/setup.py index 72d6765b..d4acf24d 100644 --- a/setup.py +++ b/setup.py @@ -80,7 +80,7 @@ setup( 'Topic :: Text Processing :: Markup :: HTML' ], packages=['jinja2', 'jinja2.testsuite', 'jinja2.testsuite.res'], - install_requires=['markupsafe'], + install_requires=['MarkupSafe'], extras_require={'i18n': ['Babel>=0.8']}, test_suite='jinja2.testsuite.suite', include_package_data=True, -- 2.47.2