longlink 0.0.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.
- longlink-0.0.0/PKG-INFO +22 -0
- longlink-0.0.0/README.md +3 -0
- longlink-0.0.0/pyproject.toml +0 -0
- longlink-0.0.0/setup.cfg +4 -0
- longlink-0.0.0/setup.py +25 -0
- longlink-0.0.0/src/longlink/__init__.py +1 -0
- longlink-0.0.0/src/longlink.egg-info/PKG-INFO +22 -0
- longlink-0.0.0/src/longlink.egg-info/SOURCES.txt +9 -0
- longlink-0.0.0/src/longlink.egg-info/dependency_links.txt +1 -0
- longlink-0.0.0/src/longlink.egg-info/requires.txt +1 -0
- longlink-0.0.0/src/longlink.egg-info/top_level.txt +1 -0
longlink-0.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: longlink
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: LonkLink SDK
|
|
5
|
+
Home-page: https://github.com/XLongLink/lonklink-sdk
|
|
6
|
+
Author: Sau1707
|
|
7
|
+
Author-email: info@lonklink.ch
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: fastapi
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
longlink
|
|
22
|
+
```
|
longlink-0.0.0/README.md
ADDED
|
File without changes
|
longlink-0.0.0/setup.cfg
ADDED
longlink-0.0.0/setup.py
ADDED
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
from setuptools import setup, find_packages
|
|
3
|
+
|
|
4
|
+
README = Path(__file__).with_name("README.md").read_text(encoding="utf-8")
|
|
5
|
+
|
|
6
|
+
setup(
|
|
7
|
+
name="longlink",
|
|
8
|
+
use_scm_version={
|
|
9
|
+
"version_scheme": "guess-next-dev",
|
|
10
|
+
"local_scheme": "no-local-version",
|
|
11
|
+
},
|
|
12
|
+
packages=find_packages(where="src"),
|
|
13
|
+
package_dir={"": "src"},
|
|
14
|
+
include_package_data=True,
|
|
15
|
+
description="LonkLink SDK",
|
|
16
|
+
long_description=README,
|
|
17
|
+
long_description_content_type="text/markdown",
|
|
18
|
+
author="Sau1707",
|
|
19
|
+
author_email="info@lonklink.ch",
|
|
20
|
+
url="https://github.com/XLongLink/lonklink-sdk",
|
|
21
|
+
python_requires=">=3.12",
|
|
22
|
+
install_requires=[
|
|
23
|
+
"fastapi",
|
|
24
|
+
],
|
|
25
|
+
)
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
print("hello")
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: longlink
|
|
3
|
+
Version: 0.0.0
|
|
4
|
+
Summary: LonkLink SDK
|
|
5
|
+
Home-page: https://github.com/XLongLink/lonklink-sdk
|
|
6
|
+
Author: Sau1707
|
|
7
|
+
Author-email: info@lonklink.ch
|
|
8
|
+
Requires-Python: >=3.12
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
Requires-Dist: fastapi
|
|
11
|
+
Dynamic: author
|
|
12
|
+
Dynamic: author-email
|
|
13
|
+
Dynamic: description
|
|
14
|
+
Dynamic: description-content-type
|
|
15
|
+
Dynamic: home-page
|
|
16
|
+
Dynamic: requires-dist
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
```
|
|
21
|
+
longlink
|
|
22
|
+
```
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
fastapi
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
longlink
|