Skip to content
Snippets Groups Projects
Commit 9c860a0e authored by admiralobvious's avatar admiralobvious
Browse files

fix dep in setup.py

parent de9a6a94
No related branches found
No related tags found
No related merge requests found
-r requirements.txt
pyldap>=2.4.28 # here instead of requirements.txt so rtfd can build pyldap>=2.4.28 # here instead of requirements.txt so rtfd can build
Sphinx>=1.5.5 Sphinx>=1.5.5
-r requirements.txt
...@@ -57,16 +57,16 @@ master_doc = 'index' ...@@ -57,16 +57,16 @@ master_doc = 'index'
# General information about the project. # General information about the project.
project = u'Flask-SimpleLDAP' project = u'Flask-SimpleLDAP'
copyright = u'2017, Alexandre Ferland' copyright = u'2019, Alexandre Ferland'
# The version info for the project you're documenting, acts as replacement for # The version info for the project you're documenting, acts as replacement for
# |version| and |release|, also used in various other places throughout the # |version| and |release|, also used in various other places throughout the
# built documents. # built documents.
# #
# The short X.Y version. # The short X.Y version.
version = '1.3.0' version = '1.3.1'
# The full version, including alpha/beta/rc tags. # The full version, including alpha/beta/rc tags.
release = '1.3.0' release = '1.3.1'
# The language for content autogenerated by Sphinx. Refer to documentation # The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages. # for a list of supported languages.
......
...@@ -9,7 +9,7 @@ from setuptools import setup ...@@ -9,7 +9,7 @@ from setuptools import setup
setup( setup(
name='Flask-SimpleLDAP', name='Flask-SimpleLDAP',
version='1.3.0', version='1.3.1',
url='https://github.com/admiralobvious/flask-simpleldap', url='https://github.com/admiralobvious/flask-simpleldap',
license='MIT', license='MIT',
author='Alexandre Ferland', author='Alexandre Ferland',
...@@ -22,7 +22,7 @@ setup( ...@@ -22,7 +22,7 @@ setup(
platforms='any', platforms='any',
install_requires=[ install_requires=[
'Flask>=0.12.4', 'Flask>=0.12.4',
'python-ldap' 'pyldap'
], ],
classifiers=[ classifiers=[
'Environment :: Web Environment', 'Environment :: Web Environment',
...@@ -30,7 +30,6 @@ setup( ...@@ -30,7 +30,6 @@ setup(
'License :: OSI Approved :: MIT License', 'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent', 'Operating System :: OS Independent',
'Programming Language :: Python :: 2.7', 'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5', 'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6', 'Programming Language :: Python :: 3.6',
'Programming Language :: Python :: 3.7', 'Programming Language :: Python :: 3.7',
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment