Skip to content

Commit

Permalink
Update Shapely
Browse files Browse the repository at this point in the history
  • Loading branch information
alimcmaster1 committed Mar 23, 2022
1 parent 0ae3d8b commit 0d58f1e
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 6 deletions.
12 changes: 8 additions & 4 deletions README.rst
Expand Up @@ -25,6 +25,10 @@ If you need assistance with neomodel, please create an issue on the GitHub repo
:scale: 100%
:target: https://neomodel.readthedocs.io/en/latest/?badge=latest

.. image:: https://badges.gitter.im/Join%20Chat.svg
:alt: Join the chat at https://gitter.im/neo4j-contrib/neomodel
:target: https://gitter.im/neo4j-contrib/neomodel?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge


Documentation
=============
Expand All @@ -46,6 +50,10 @@ Install from pypi (recommended)::

$ pip install neomodel ($ source dev # To install all things needed in a Python3 venv)

Neomodel has some optional dependencies (including Shapely), to install these use:

$ pip install neomodel['extras']

To install from github::

$ pip install git+git://github.com/neo4j-contrib/neomodel.git@HEAD#egg=neomodel-dev
Expand Down Expand Up @@ -96,7 +104,3 @@ interpreters and neo4j versions::
# in the project's root folder:
$ ./tests-with-docker-compose.sh


.. image:: https://badges.gitter.im/Join%20Chat.svg
:alt: Join the chat at https://gitter.im/neo4j-contrib/neomodel
:target: https://gitter.im/neo4j-contrib/neomodel?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge
5 changes: 3 additions & 2 deletions setup.py
Expand Up @@ -18,9 +18,10 @@
'scripts/neomodel_remove_labels'],
setup_requires=[
'pytest-runner'] if any(x in ('pytest', 'test') for x in sys.argv) else [],
tests_require=['pytest>=6.2.4', 'shapely', 'neobolt'],
tests_require=['pytest>=6.2.4'],
extras_require={'extras': ['Shapely>=1.7.1,<1.9']},
install_requires=['neo4j-driver==4.3.6', 'pytz>=2021.1',
"neobolt==1.7.17", "Shapely==1.7.1", "six==1.16.0"],
"neobolt==1.7.17", "six==1.16.0"],
classifiers=[
"Development Status :: 5 - Production/Stable",
'Intended Audience :: Developers',
Expand Down

0 comments on commit 0d58f1e

Please sign in to comment.