tgraphx 0.0.1__tar.gz → 0.0.1.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/PKG-INFO +22 -1
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/README.md +21 -0
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/pyproject.toml +2 -2
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/tgraphx.egg-info/PKG-INFO +22 -1
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/setup.cfg +0 -0
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/setup.py +0 -0
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/tgraphx/__init__.py +0 -0
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/tgraphx.egg-info/SOURCES.txt +0 -0
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/tgraphx.egg-info/dependency_links.txt +0 -0
- {tgraphx-0.0.1 → tgraphx-0.0.1.dev1}/tgraphx.egg-info/top_level.txt +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tgraphx
|
|
3
|
-
Version: 0.0.1
|
|
3
|
+
Version: 0.0.1.dev1
|
|
4
4
|
Summary: Early placeholder for TGraphX PyPI reservation
|
|
5
5
|
Author: Arash Sajjadi
|
|
6
6
|
Author-email: Arash Sajjadi <arash.sajjadi@usask.ca>
|
|
@@ -26,6 +26,27 @@ TGraphX is a **PyTorch**-based framework for building Graph Neural Networks (GNN
|
|
|
26
26
|
> in rigorous theoretical and practical foundations, aiming to unify
|
|
27
27
|
> convolutional neural networks (CNNs) with GNN-based relational reasoning.
|
|
28
28
|
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
You may try installing TGraphX using:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install tgraphx
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
> ⚠️ **Note:** This command is expected to work once the package is fully published on PyPI.
|
|
38
|
+
> It might work now, but we haven’t tested it yet.
|
|
39
|
+
> Full support and testing for PyPI installation is planned in a future release.
|
|
40
|
+
|
|
41
|
+
Alternatively, you can install it manually by cloning the repository:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
git clone https://github.com/arashsajjadi/TGraphX.git
|
|
45
|
+
cd TGraphX
|
|
46
|
+
pip install -e .
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
|
|
29
50
|
---
|
|
30
51
|
## Table of Contents
|
|
31
52
|
|
|
@@ -14,6 +14,27 @@ TGraphX is a **PyTorch**-based framework for building Graph Neural Networks (GNN
|
|
|
14
14
|
> in rigorous theoretical and practical foundations, aiming to unify
|
|
15
15
|
> convolutional neural networks (CNNs) with GNN-based relational reasoning.
|
|
16
16
|
|
|
17
|
+
## Installation
|
|
18
|
+
|
|
19
|
+
You may try installing TGraphX using:
|
|
20
|
+
|
|
21
|
+
```bash
|
|
22
|
+
pip install tgraphx
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
> ⚠️ **Note:** This command is expected to work once the package is fully published on PyPI.
|
|
26
|
+
> It might work now, but we haven’t tested it yet.
|
|
27
|
+
> Full support and testing for PyPI installation is planned in a future release.
|
|
28
|
+
|
|
29
|
+
Alternatively, you can install it manually by cloning the repository:
|
|
30
|
+
|
|
31
|
+
```bash
|
|
32
|
+
git clone https://github.com/arashsajjadi/TGraphX.git
|
|
33
|
+
cd TGraphX
|
|
34
|
+
pip install -e .
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
|
|
17
38
|
---
|
|
18
39
|
## Table of Contents
|
|
19
40
|
|
|
@@ -4,11 +4,11 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "tgraphx"
|
|
7
|
-
version = "0.0.1"
|
|
7
|
+
version = "0.0.1.dev1"
|
|
8
8
|
authors = [
|
|
9
9
|
{name = "Arash Sajjadi", email = "arash.sajjadi@usask.ca"}
|
|
10
10
|
]
|
|
11
11
|
description = "Early placeholder for TGraphX PyPI reservation"
|
|
12
12
|
readme = "README.md"
|
|
13
13
|
requires-python = ">=3.8"
|
|
14
|
-
license = {text = "MIT"}
|
|
14
|
+
license = {text = "MIT"}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: tgraphx
|
|
3
|
-
Version: 0.0.1
|
|
3
|
+
Version: 0.0.1.dev1
|
|
4
4
|
Summary: Early placeholder for TGraphX PyPI reservation
|
|
5
5
|
Author: Arash Sajjadi
|
|
6
6
|
Author-email: Arash Sajjadi <arash.sajjadi@usask.ca>
|
|
@@ -26,6 +26,27 @@ TGraphX is a **PyTorch**-based framework for building Graph Neural Networks (GNN
|
|
|
26
26
|
> in rigorous theoretical and practical foundations, aiming to unify
|
|
27
27
|
> convolutional neural networks (CNNs) with GNN-based relational reasoning.
|
|
28
28
|
|
|
29
|
+
## Installation
|
|
30
|
+
|
|
31
|
+
You may try installing TGraphX using:
|
|
32
|
+
|
|
33
|
+
```bash
|
|
34
|
+
pip install tgraphx
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
> ⚠️ **Note:** This command is expected to work once the package is fully published on PyPI.
|
|
38
|
+
> It might work now, but we haven’t tested it yet.
|
|
39
|
+
> Full support and testing for PyPI installation is planned in a future release.
|
|
40
|
+
|
|
41
|
+
Alternatively, you can install it manually by cloning the repository:
|
|
42
|
+
|
|
43
|
+
```bash
|
|
44
|
+
git clone https://github.com/arashsajjadi/TGraphX.git
|
|
45
|
+
cd TGraphX
|
|
46
|
+
pip install -e .
|
|
47
|
+
```
|
|
48
|
+
|
|
49
|
+
|
|
29
50
|
---
|
|
30
51
|
## Table of Contents
|
|
31
52
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|