seedance2pro-io 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.
- seedance2pro_io-0.1.0/PKG-INFO +48 -0
- seedance2pro_io-0.1.0/README.md +35 -0
- seedance2pro_io-0.1.0/pyproject.toml +21 -0
- seedance2pro_io-0.1.0/setup.cfg +4 -0
- seedance2pro_io-0.1.0/src/seedance2pro_io/__init__.py +24 -0
- seedance2pro_io-0.1.0/src/seedance2pro_io.egg-info/PKG-INFO +48 -0
- seedance2pro_io-0.1.0/src/seedance2pro_io.egg-info/SOURCES.txt +7 -0
- seedance2pro_io-0.1.0/src/seedance2pro_io.egg-info/dependency_links.txt +1 -0
- seedance2pro_io-0.1.0/src/seedance2pro_io.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: seedance2pro-io
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Python metadata helper package for https://seedance2pro.io blog and Next.js publishing workflows
|
|
5
|
+
Author-email: "seedance2pro.io" <support@seedance2pro.io>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://seedance2pro.io
|
|
8
|
+
Project-URL: Documentation, https://seedance2pro.io/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/youram470-art/seedance2pro-io-python
|
|
10
|
+
Project-URL: Issues, https://github.com/youram470-art/seedance2pro-io-python/issues
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# seedance2pro-io
|
|
15
|
+
|
|
16
|
+
Python metadata package for [seedance2pro.io](https://seedance2pro.io).
|
|
17
|
+
|
|
18
|
+
`seedance2pro-io` provides importable metadata for the Seedance 2 Pro website.
|
|
19
|
+
It is useful for scripts that need to reference the production URL, blog content
|
|
20
|
+
directory, or Next.js app path while working with the site.
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install seedance2pro-io
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from seedance2pro_io import HOMEPAGE, get_site_info, hello
|
|
32
|
+
|
|
33
|
+
print(hello())
|
|
34
|
+
print(HOMEPAGE)
|
|
35
|
+
print(get_site_info())
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Site Metadata
|
|
39
|
+
|
|
40
|
+
- Website: https://seedance2pro.io
|
|
41
|
+
- Local repository: `/Users/mac/Documents/code/seedance2_new`
|
|
42
|
+
- Content path: `content/blog`
|
|
43
|
+
- Next.js app path: `src/app`
|
|
44
|
+
- Source: https://github.com/youram470-art/seedance2pro-io-python
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
# seedance2pro-io
|
|
2
|
+
|
|
3
|
+
Python metadata package for [seedance2pro.io](https://seedance2pro.io).
|
|
4
|
+
|
|
5
|
+
`seedance2pro-io` provides importable metadata for the Seedance 2 Pro website.
|
|
6
|
+
It is useful for scripts that need to reference the production URL, blog content
|
|
7
|
+
directory, or Next.js app path while working with the site.
|
|
8
|
+
|
|
9
|
+
## Installation
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install seedance2pro-io
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
```python
|
|
18
|
+
from seedance2pro_io import HOMEPAGE, get_site_info, hello
|
|
19
|
+
|
|
20
|
+
print(hello())
|
|
21
|
+
print(HOMEPAGE)
|
|
22
|
+
print(get_site_info())
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Site Metadata
|
|
26
|
+
|
|
27
|
+
- Website: https://seedance2pro.io
|
|
28
|
+
- Local repository: `/Users/mac/Documents/code/seedance2_new`
|
|
29
|
+
- Content path: `content/blog`
|
|
30
|
+
- Next.js app path: `src/app`
|
|
31
|
+
- Source: https://github.com/youram470-art/seedance2pro-io-python
|
|
32
|
+
|
|
33
|
+
## License
|
|
34
|
+
|
|
35
|
+
MIT
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=68", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "seedance2pro-io"
|
|
7
|
+
version = "0.1.0"
|
|
8
|
+
description = "Python metadata helper package for https://seedance2pro.io blog and Next.js publishing workflows"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [{ name = "seedance2pro.io", email = "support@seedance2pro.io" }]
|
|
13
|
+
|
|
14
|
+
[project.urls]
|
|
15
|
+
Homepage = "https://seedance2pro.io"
|
|
16
|
+
Documentation = "https://seedance2pro.io/docs"
|
|
17
|
+
Repository = "https://github.com/youram470-art/seedance2pro-io-python"
|
|
18
|
+
Issues = "https://github.com/youram470-art/seedance2pro-io-python/issues"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools.packages.find]
|
|
21
|
+
where = ["src"]
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
HOMEPAGE = "https://seedance2pro.io"
|
|
2
|
+
DOCUMENTATION = "https://seedance2pro.io/docs"
|
|
3
|
+
PACKAGE = "seedance2pro-io"
|
|
4
|
+
REPOSITORY = "https://github.com/youram470-art/seedance2pro-io-python"
|
|
5
|
+
LOCAL_REPOSITORY = "/Users/mac/Documents/code/seedance2_new"
|
|
6
|
+
CONTENT_PATH = "content/blog"
|
|
7
|
+
APP_PATH = "src/app"
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
def hello() -> str:
|
|
11
|
+
return "hello from seedance2pro.io"
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
def get_site_info() -> dict:
|
|
15
|
+
return {
|
|
16
|
+
"name": "seedance2pro.io",
|
|
17
|
+
"homepage": HOMEPAGE,
|
|
18
|
+
"documentation": DOCUMENTATION,
|
|
19
|
+
"package": PACKAGE,
|
|
20
|
+
"repository": REPOSITORY,
|
|
21
|
+
"local_repository": LOCAL_REPOSITORY,
|
|
22
|
+
"content_path": CONTENT_PATH,
|
|
23
|
+
"app_path": APP_PATH,
|
|
24
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: seedance2pro-io
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Python metadata helper package for https://seedance2pro.io blog and Next.js publishing workflows
|
|
5
|
+
Author-email: "seedance2pro.io" <support@seedance2pro.io>
|
|
6
|
+
License-Expression: MIT
|
|
7
|
+
Project-URL: Homepage, https://seedance2pro.io
|
|
8
|
+
Project-URL: Documentation, https://seedance2pro.io/docs
|
|
9
|
+
Project-URL: Repository, https://github.com/youram470-art/seedance2pro-io-python
|
|
10
|
+
Project-URL: Issues, https://github.com/youram470-art/seedance2pro-io-python/issues
|
|
11
|
+
Requires-Python: >=3.8
|
|
12
|
+
Description-Content-Type: text/markdown
|
|
13
|
+
|
|
14
|
+
# seedance2pro-io
|
|
15
|
+
|
|
16
|
+
Python metadata package for [seedance2pro.io](https://seedance2pro.io).
|
|
17
|
+
|
|
18
|
+
`seedance2pro-io` provides importable metadata for the Seedance 2 Pro website.
|
|
19
|
+
It is useful for scripts that need to reference the production URL, blog content
|
|
20
|
+
directory, or Next.js app path while working with the site.
|
|
21
|
+
|
|
22
|
+
## Installation
|
|
23
|
+
|
|
24
|
+
```bash
|
|
25
|
+
pip install seedance2pro-io
|
|
26
|
+
```
|
|
27
|
+
|
|
28
|
+
## Usage
|
|
29
|
+
|
|
30
|
+
```python
|
|
31
|
+
from seedance2pro_io import HOMEPAGE, get_site_info, hello
|
|
32
|
+
|
|
33
|
+
print(hello())
|
|
34
|
+
print(HOMEPAGE)
|
|
35
|
+
print(get_site_info())
|
|
36
|
+
```
|
|
37
|
+
|
|
38
|
+
## Site Metadata
|
|
39
|
+
|
|
40
|
+
- Website: https://seedance2pro.io
|
|
41
|
+
- Local repository: `/Users/mac/Documents/code/seedance2_new`
|
|
42
|
+
- Content path: `content/blog`
|
|
43
|
+
- Next.js app path: `src/app`
|
|
44
|
+
- Source: https://github.com/youram470-art/seedance2pro-io-python
|
|
45
|
+
|
|
46
|
+
## License
|
|
47
|
+
|
|
48
|
+
MIT
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
seedance2pro_io
|