-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
minor updates to docs, prepare for push to pypi
- Loading branch information
Showing
5 changed files
with
17 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -18,19 +18,8 @@ The library is built specifically for converting data into a [neo4j](https://neo | |
This library has been developed at the [Chair of Systems Design at ETH Zürich](https://www.sg.ethz.ch). | ||
|
||
## Installation | ||
If you have setup a private ssh key for your github, copy-paste the command below to install the latest version ([v1.3.3][latest_tag]): | ||
``` | ||
pip install git+ssh://[email protected]/jkminder/[email protected] | ||
``` | ||
|
||
If you don't have ssh set up, download the latest wheel [here][latest_wheel] and install the wheel with: | ||
``` | ||
pip install **path-to-wheel** | ||
``` | ||
|
||
If you have cloned the repository you can also build it locally with | ||
``` | ||
pip install **path-to-repository** | ||
pip install data2neo | ||
``` | ||
The Data2Neo library supports Python 3.8+. | ||
|
||
|
@@ -94,7 +83,4 @@ converter() | |
# Known issues | ||
If you encounter a bug or an unexplainable behavior, please check the [known issues](https://github.com/jkminder/Data2Neo/labels/bug) list. If your issue is not found, submit a new one. | ||
|
||
[latest_version]: v1.3.3 | ||
[latest_tag]: https://github.com/jkminder/data2neo/releases/tag/v1.3.3 | ||
[latest_wheel]: https://github.com/jkminder/data2neo/releases/download/v1.3.3/Data2Neo-1.3.3-py3-none-any.whl | ||
[wiki]: https://Data2Neo.jkminder.ch/index.html | ||
[wiki]: https://data2neo.jkminder.ch/index.html |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,22 +3,10 @@ | |
Installation | ||
============= | ||
|
||
To install the software, follow these steps: | ||
Install the package using pip: | ||
|
||
1. Clone the repository: | ||
.. code-block:: bash | ||
.. code-block:: bash | ||
pip install data2neo | ||
git clone [email protected]:sg-dev/data2neo.git | ||
2. Change to the project directory: | ||
|
||
.. code-block:: bash | ||
cd data2neo | ||
3. Install the library: | ||
|
||
.. code-block:: bash | ||
pip install . | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,15 +6,20 @@ | |
'neo4j>=5.11.0' | ||
] | ||
|
||
long_desc = open('README.md').read() | ||
# replace local links | ||
long_desc = long_desc.replace('docs/source/assets/images/data2neo_banner.png', 'https://github.com/jkminder/data2neo/blob/main/docs/source/assets/images/data2neo_banner.png?raw=true') | ||
|
||
setup( | ||
name = "data2neo", | ||
packages = find_packages(), | ||
version = "1.4.0", | ||
version = "1.4.3", | ||
description = "Library for converting relational data into graph data (neo4j)", | ||
author = "Julian Minder", | ||
author_email = "[email protected]", | ||
url = "https://github.com/jkminder/data2neo", | ||
install_requires = requirements, | ||
python_requires = ">=3.8" | ||
) | ||
|
||
python_requires = ">=3.8", | ||
long_description=long_desc, | ||
long_description_content_type='text/markdown' | ||
) |