forked from palash1992/GEM
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (63 loc) · 1.58 KB
/
pyproject.toml
File metadata and controls
72 lines (63 loc) · 1.58 KB
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
[project]
name = "nxt-gem"
dynamic = ["version"]
description = "nxt_gem: A Python module for Graph Embedding Methods"
readme = "README.md"
requires-python = ">=3.10"
authors = [
{ name = "Jan Ernsting", email = "j.ernsting@uni-muenster.de" }
]
license = { text = "MIT" }
keywords = [
"graph embedding",
"network analysis",
"network embedding",
"data mining",
"machine learning",
]
classifiers = [
"License :: OSI Approved :: MIT License",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
]
dependencies = [
"matplotlib>=2.0.0",
"networkx>=3.4.2",
"numpy>=2.2.2",
"pbr>=7.0.3",
"scikit-learn>=0.21.2",
"scipy>=0.19.0",
"tensorflow>=2.21.0",
"theano>=0.9.0",
]
[build-system]
requires = ["hatchling", "hatch-vcs"]
build-backend = "hatchling.build"
[tool.hatch.version]
source = "vcs"
[tool.hatch.build.targets.wheel]
packages = ["gem"]
[tool.hatch.build.targets.sdist]
include = [
"/gem",
]
[tool.hatch.build.hooks.vcs]
version-file = "gem/_version.py"
[tool.ruff]
# Target version for the linter (matches your project)
target-version = "py312"
line-length = 88
[tool.ruff.lint]
# Enable Pyflakes (F) and pycodestyle (E) codes by default.
# You can add more like "I" (isort) or "D" (pydocstyle).
select = ["E", "F", "I", "UP"]
ignore = ["E501"] # as of now no line lenght check
[tool.ruff.format]
quote-style = "double"
[dependency-groups]
dev = [
"pytest>=9.0.3",
"pytest-cov>=7.1.0",
"ruff>=0.15.9",
]