-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
45 lines (41 loc) · 1.06 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
[build-system]
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]>",
]
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",
"Geometric Deep Learning",
"Machine Learning",
"Deep Learning"
]
classifiers = [
"Development Status :: 2 - Pre-Alpha",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
[tool.poetry.dependencies]
tensorflow = ">=2.15"
numpy = "*"
matplotlib = "*"
# 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"
]