-
Notifications
You must be signed in to change notification settings - Fork 2
/
pyproject.toml
92 lines (78 loc) · 2.13 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
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
[build-system]
requires = ["setuptools>=45", "wheel", "setuptools_scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools_scm]
normalize = true
[project]
name = "adbpyg_adapter"
description = "Convert ArangoDB graphs to PyG & vice-versa."
keywords = ["arangodb", "pyg", "pytorch", "pytorch geometric", "adapter"]
readme = "README.md"
dynamic = ["version"]
license = {file = "LICENSE"}
requires-python = ">=3.8"
authors = [{name = "Anthony Mahanna", email = "anthony.mahanna@arangodb.com"}]
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
# "Programming Language :: Python :: 3.12",
"Topic :: Utilities",
"Typing :: Typed",
]
dependencies = [
"requests>=2.27.1",
"rich>=12.5.1",
"pandas>=1.3.5",
"python-arango~=7.6",
"torch>=1.12.0",
"torch-sparse>=0.6.14",
"torch-scatter>=2.0.9",
"torch-geometric>=2.0.4",
"setuptools>=45"
]
[project.optional-dependencies]
dev = [
"black==23.3.0",
"flake8==6.0.0",
"Flake8-pyproject",
"isort==5.12.0",
"mypy==1.4.1",
"pytest>=6.0.0",
"pytest-cov>=2.0.0",
"coveralls>=3.3.1",
"types-setuptools>=57.4.9",
"types-requests>=2.27.11",
"networkx>=2.5.1",
]
[project.urls]
"Homepage" = "https://github.com/arangoml/pyg-adapter"
[tool.setuptools]
packages = ["adbpyg_adapter"]
[tool.pytest.ini_options]
addopts = "-s -vv"
minversion = "6.0"
testpaths = ["tests"]
[tool.coverage.report]
omit = ["*tests*"]
[tool.coverage.run]
omit = ["*tests*"]
[tool.isort]
profile = "black"
[tool.flake8]
max-line-length = 88
extend-ignore = ["E203", "W503", "E251"]
exclude = [".git", ".idea", ".*_cache", "dist", "venv"]
[tool.mypy]
strict = true
ignore_missing_imports = true
implicit_reexport = true
scripts_are_modules = true
follow_imports = "skip"
disallow_subclassing_any = false
disallow_untyped_decorators = false