-
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.
Add development dependencies as
dev
extra to be installed with inst…
…alling the target `gcnn[dev]`.
- Loading branch information
Showing
2 changed files
with
24 additions
and
8 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
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 |
---|---|---|
@@ -1,18 +1,25 @@ | ||
[build-system] | ||
requires = ["poetry-core>=1.0.0"] | ||
requires = ["poetry-core>=1.2.0"] | ||
build-backend = "poetry.core.masonry.api" | ||
|
||
[tool.poetry] | ||
name = "gcnn" | ||
version = "0.1.0" | ||
authors = [ | ||
"Marius Kurz <[email protected]>", | ||
"Marius Kurz <[email protected]>", | ||
] | ||
description = "An implementation of Graph Convolutional Neural Networks (GCNN) using TensorFlow." | ||
license = "MIT" | ||
readme = "README.md" | ||
repository = "https://github.com/m-kurz/gcnn/" | ||
keywords = ["Graph Convolutional Neural Networks", "TensorFlow", "Graph Neural Networks"] | ||
keywords = [ | ||
"Graph Convolutional Neural Networks", | ||
"TensorFlow", | ||
"Graph Neural Networks", | ||
"Geometric Deep Learning", | ||
"Machine Learning", | ||
"Deep Learning" | ||
] | ||
classifiers = [ | ||
"Development Status :: 2 - Pre-Alpha", | ||
"License :: OSI Approved :: MIT License", | ||
|
@@ -24,6 +31,15 @@ classifiers = [ | |
tensorflow = ">=2.15" | ||
numpy = "*" | ||
matplotlib = "*" | ||
pytest = "*" | ||
pytest-cov = "*" | ||
pylint = "*" | ||
|
||
# Add development dependencies as `dev` extra | ||
pytest = { version = "*", optional = true} | ||
pytest-cov = { version = "*", optional = true} | ||
pylint = { version = "*", optional = true} | ||
|
||
[tool.poetry.extras] | ||
dev = [ | ||
"pytest", | ||
"pytest-cov", | ||
"pylint" | ||
] |