Skip to content
This repository has been archived by the owner on Jan 22, 2021. It is now read-only.

Commit

Permalink
update some dependencies
Browse files Browse the repository at this point in the history
Replace Flask-RESTPlus which is unmaintained by Flask-RESTX.

Take a look at:

* noirbizarre/flask-restplus#593
* noirbizarre/flask-restplus#770

fix #60
  • Loading branch information
garaud committed Oct 20, 2020
1 parent 12e40de commit 112457b
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@
LONG_DESCRIPTION = fobj.read()

INSTALL_REQUIRES = ["luigi", "numpy", "pandas", "requests", "psycopg2-binary",
'sqlalchemy', 'lxml', 'xgboost', 'daiquiri', 'Flask==1.0.2',
'flask-restplus==0.12.1', 'sh', 'seaborn', 'scikit-learn',
'tables']
'sqlalchemy', 'lxml', 'xgboost', 'daiquiri',
'flask-restx', 'sh', 'seaborn', 'scikit-learn', 'tables']


setuptools.setup(
Expand All @@ -20,7 +19,7 @@
packages=setuptools.find_packages(),
include_package_data=True,
install_requires=INSTALL_REQUIRES,
extras_require={'dev': ['pytest', 'pytest-sugar', 'ipython', 'ipdb']},
extras_require={'dev': ['pytest', 'pytest-sugar', 'ipython', 'ipdb', 'flake8', 'isort']},

author="Damien Garaud",
author_email='damien.garaud@gmail.com',
Expand Down

0 comments on commit 112457b

Please sign in to comment.