-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
43 lines (38 loc) · 829 Bytes
/
pyproject.toml
File metadata and controls
43 lines (38 loc) · 829 Bytes
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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "pome-py"
version = "1.0"
description = "POME: Partially observed mixed-type data embeddings"
readme = "README.md"
requires-python = ">=3.8"
dependencies = [
"numpy",
"pandas",
"scipy",
"scikit-learn",
"torch",
"torch-geometric",
"networkx"
]
authors = [
{ name = "Fabian Woller"}
]
license = { text = "GPL-3.0-only" }
keywords = ["representation-learning", "graphs", "embeddings", "missing data"]
[tool.setuptools.packages.find]
where = ["src"]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
]
[tool.pytest.ini_options]
testpaths = ["tests"]
pythonpath = ["src"]
addopts = "--cov=pome --cov-report=term-missing"
[tool.coverage.run]
omit = [
"*/__init__.py",
]