-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
79 lines (71 loc) · 2.04 KB
/
pyproject.toml
File metadata and controls
79 lines (71 loc) · 2.04 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
73
74
75
76
77
78
79
[build-system]
requires = ["setuptools>=65", "setuptools_scm[toml]>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "gfn-layer"
requires-python = ">=3.10"
authors = [
{ name = "Oisín M. Morrison", email = "oisinmmm@gmail.com" }
]
maintainers = [
{name = "Oisín M. Morrison", email = "oisinmmm@gmail.com"},
]
description = "Graph Feedforward Networks: an extension of linear layers to graphs"
license = { text = "Apache License Version 2.0" }
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Science/Research",
"Natural Language :: English",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
dynamic = ["version", "readme"]
dependencies = [
"torch",
"numpy",
"scipy"
]
[dependency-groups]
dev = [
{ include-group = "tests" },
"pre-commit",
]
tests = [
"pytest",
]
ci = [
{ include-group = "tests" },
"pytest-cov",
"faiss-cpu"
]
docs = [
"sphinx",
"sphinxcontrib-bibtex",
]
[project.urls]
repository = "https://github.com/Oisin-M/gfn"
documentation = "https://gfn-layer.readthedocs.io"
issues = "https://github.com/Oisin-M/gfn/issues"
# Packaging/setuptools options
[tool.setuptools]
include-package-data = true
[tool.setuptools.dynamic]
readme = {file = ["README.md"], content-type = "text/markdown"}
[tool.setuptools.packages.find]
include = [ "gfn" ]
where = [ "src/" ]
[tool.setuptools_scm]
version_file = "src/gfn/_version.py"
version_file_template = '''
# Do not change! Do not track in version control!
__version__ = "{version}"
'''
parentdir_prefix_version='gfn-' # get version from GitHub-like tarballs
local_scheme = "no-local-version"