Skip to content

Commit

Permalink
Merge pull request #78 from eliorc/poetry
Browse files Browse the repository at this point in the history
Poetry
  • Loading branch information
eliorc committed Oct 9, 2021
2 parents 68112e1 + 60e4e14 commit f46ba9d
Show file tree
Hide file tree
Showing 5 changed files with 220 additions and 24 deletions.
3 changes: 0 additions & 3 deletions .gitignore
Expand Up @@ -8,6 +8,3 @@
/*.egg-info

.idea

MANIFEST

3 changes: 2 additions & 1 deletion node2vec/__init__.py
@@ -1,4 +1,5 @@
from . import edges
from .node2vec import Node2Vec
from importlib import metadata

__version__ = '0.4.3'
__version__ = metadata.version('node2vec')
198 changes: 198 additions & 0 deletions poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

20 changes: 20 additions & 0 deletions pyproject.toml
@@ -0,0 +1,20 @@
[tool.poetry]
name = "node2vec"
version = "0.4.4"
description = "Implementation of the node2vec algorithm"
authors = ["elior <elior.cohen.p@gmail.com>"]
license = "MIT"

[tool.poetry.dependencies]
python = "^3.8"
networkx = "^2.5"
gensim = "^4.1.2"
numpy = "^1.19.5"
tqdm = "^4.55.1"
joblib = "^1.1.0"

[tool.poetry.dev-dependencies]

[build-system]
requires = ["poetry-core>=1.0.0"]
build-backend = "poetry.core.masonry.api"
20 changes: 0 additions & 20 deletions setup.py

This file was deleted.

0 comments on commit f46ba9d

Please sign in to comment.