python-gfm 0.1.0__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.
- python_gfm-0.1.0/PKG-INFO +23 -0
- python_gfm-0.1.0/README.md +15 -0
- python_gfm-0.1.0/pyproject.toml +13 -0
- python_gfm-0.1.0/setup.cfg +4 -0
- python_gfm-0.1.0/src/pygfm/__init__.py +0 -0
- python_gfm-0.1.0/src/python_gfm.egg-info/PKG-INFO +23 -0
- python_gfm-0.1.0/src/python_gfm.egg-info/SOURCES.txt +7 -0
- python_gfm-0.1.0/src/python_gfm.egg-info/dependency_links.txt +1 -0
- python_gfm-0.1.0/src/python_gfm.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: python-gfm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: An AI copilot for graph data and models (Under active development).
|
|
5
|
+
Author-email: BUAA SKLCCSE <your.email@example.com>
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# python-gfm
|
|
10
|
+
|
|
11
|
+
This project is currently under active development. Core functionalities will be released soon.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install python-gfm
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
import pygfm
|
|
23
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "python-gfm"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
authors = [
|
|
9
|
+
{ name="BUAA SKLCCSE", email="your.email@example.com" },
|
|
10
|
+
]
|
|
11
|
+
description = "An AI copilot for graph data and models (Under active development)."
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
requires-python = ">=3.8"
|
|
File without changes
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: python-gfm
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: An AI copilot for graph data and models (Under active development).
|
|
5
|
+
Author-email: BUAA SKLCCSE <your.email@example.com>
|
|
6
|
+
Requires-Python: >=3.8
|
|
7
|
+
Description-Content-Type: text/markdown
|
|
8
|
+
|
|
9
|
+
# python-gfm
|
|
10
|
+
|
|
11
|
+
This project is currently under active development. Core functionalities will be released soon.
|
|
12
|
+
|
|
13
|
+
## Installation
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
pip install python-gfm
|
|
17
|
+
```
|
|
18
|
+
|
|
19
|
+
## Usage
|
|
20
|
+
|
|
21
|
+
```python
|
|
22
|
+
import pygfm
|
|
23
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
pygfm
|