Skip to content

Commit 90a5dc8

Browse files
committed
added SQLAlchemy>=1.3 as a fixed dependency (it was, anyway)
1 parent 11d4075 commit 90a5dc8

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

README.rst

-4
Original file line numberDiff line numberDiff line change
@@ -36,8 +36,6 @@ in the library, that show you how you can implement and use an actual graph scra
3636
Dependencies
3737
-----------------
3838

39-
The project requires SQLAlchemy_ or Flask-SQLAlchemy_ to be installed.
40-
4139
If you wish to use one of the included graph implementations, then please read the
4240
corresponding module's description for additional requirements.
4341

@@ -47,8 +45,6 @@ Contribution
4745
Any form of constructive contribution (feedback, features, bug fixes, tests, additional
4846
documentation, etc.) is welcome.
4947

50-
.. _Flask-SQLAlchemy: http://flask-sqlalchemy.pocoo.org/
5148
.. _igraph: http://igraph.org
5249
.. _Spotify: https://developer.spotify.com/web-api/
53-
.. _SQLAlchemy: https://www.sqlalchemy.org/
5450
.. |Downloads| image:: https://pepy.tech/badge/graphscraper

setup.py

+3-2
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88

99
setup(
1010
name="graphscraper",
11-
version="0.4.0",
11+
version="0.5.0",
1212
description="Graph implementation that loads graph data (nodes and edges) from external sources "
1313
"and caches the loaded data in a database using sqlalchemy or flask-sqlalchemy.",
1414
long_description=long_description,
@@ -33,5 +33,6 @@
3333
keywords="graph network webscraping sqlalchemy database db caching",
3434
package_dir={"": "src"},
3535
packages=find_packages("src"),
36-
python_requires=">=3"
36+
python_requires=">=3",
37+
install_requires=["sqlalchemy>=1.3"]
3738
)

0 commit comments

Comments
 (0)