-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpyproject.toml
63 lines (58 loc) · 1.91 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
[project]
name = "tglite"
# dynamic = ["version"]
version = "0.0.4"
description = "Temporal GNN Lightweight Framework"
readme = "README.md"
license = {file = "LICENSE"}
authors = [
{name = "Yufeng Wang", email = "[email protected]"},
{name = "Charith Mendis", email = "[email protected]"}
]
maintainers = [
{name = "Wanyu Zhao", email = "[email protected]"}
]
keywords = [
"machine learning", "TGNN",
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
]
requires-python = ">=3.7, <3.11"
dependencies = [
'numpy==1.21.6; python_version == "3.7"',
'numpy>=1.21.6, <1.25.0; python_version == "3.8"',
'numpy>=1.21.6, <1.26.0; python_version == "3.9"',
'numpy>=1.21.6; python_version == "3.10"',
'torch>=1.12.1, <2.0.0; python_version == "3.7"',
'torch>=1.12.1; python_version >= "3.8"',
'torch-scatter>=2.1.0, <2.1.2; python_version == "3.7"',
'torch-scatter>=2.1.0; python_version == "3.8"',
]
[project.optional-dependencies]
dev = ["sphinx"]
test = ["pytest", "pytest-cov"]
docs = ["sphinx_rtd_theme", "nbsphinx", "ipykernel"]
[project.urls]
homepage = "https://github.com/ADAPT-uiuc/tglite"
documentation = "https://readthedocs.org"
repository = "https://github.com/ADAPT-uiuc/tglite"
issues = "https://github.com/me/ADAPT-uiuc/tglite/issues"
# [tool.setuptools.dynamic]
# version = {attr = "tglite.__version__"}
[tool.setuptools.packages.find]
where = ["python"]
include = ["tglite*"]
namespaces = false
[build-system]
requires = ["setuptools>=61.0", "wheel", "torch>=1.12.1"]
build-backend = "setuptools.build_meta"