dsqus 0.dev4__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.
- dsqus-0.dev4/PKG-INFO +21 -0
- dsqus-0.dev4/README.md +11 -0
- dsqus-0.dev4/dsqus/dsqus.egg-info/PKG-INFO +21 -0
- dsqus-0.dev4/dsqus/dsqus.egg-info/SOURCES.txt +6 -0
- dsqus-0.dev4/dsqus/dsqus.egg-info/dependency_links.txt +1 -0
- dsqus-0.dev4/dsqus/dsqus.egg-info/top_level.txt +1 -0
- dsqus-0.dev4/pyproject.toml +24 -0
- dsqus-0.dev4/setup.cfg +4 -0
dsqus-0.dev4/PKG-INFO
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dsqus
|
|
3
|
+
Version: 0.dev4
|
|
4
|
+
Summary: dsqusss Python package
|
|
5
|
+
Author: Sanjog Sigdel
|
|
6
|
+
Project-URL: Homepage, https://github.com/sigdelsanjog/dsqus
|
|
7
|
+
Project-URL: Repository, https://github.com/sigdelsanjog/dsqus
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# dsqusss
|
|
12
|
+
|
|
13
|
+
Python package scaffold for the `dsqus` repository.
|
|
14
|
+
|
|
15
|
+
## Publish on every push
|
|
16
|
+
|
|
17
|
+
This repository includes a GitHub Actions workflow that builds and publishes the package on every push.
|
|
18
|
+
|
|
19
|
+
Set this repository secret before pushing:
|
|
20
|
+
|
|
21
|
+
- `PYPI_API_TOKEN`: your PyPI token (`pypi-...`).
|
dsqus-0.dev4/README.md
ADDED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
# dsqusss
|
|
2
|
+
|
|
3
|
+
Python package scaffold for the `dsqus` repository.
|
|
4
|
+
|
|
5
|
+
## Publish on every push
|
|
6
|
+
|
|
7
|
+
This repository includes a GitHub Actions workflow that builds and publishes the package on every push.
|
|
8
|
+
|
|
9
|
+
Set this repository secret before pushing:
|
|
10
|
+
|
|
11
|
+
- `PYPI_API_TOKEN`: your PyPI token (`pypi-...`).
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: dsqus
|
|
3
|
+
Version: 0.dev4
|
|
4
|
+
Summary: dsqusss Python package
|
|
5
|
+
Author: Sanjog Sigdel
|
|
6
|
+
Project-URL: Homepage, https://github.com/sigdelsanjog/dsqus
|
|
7
|
+
Project-URL: Repository, https://github.com/sigdelsanjog/dsqus
|
|
8
|
+
Requires-Python: >=3.10
|
|
9
|
+
Description-Content-Type: text/markdown
|
|
10
|
+
|
|
11
|
+
# dsqusss
|
|
12
|
+
|
|
13
|
+
Python package scaffold for the `dsqus` repository.
|
|
14
|
+
|
|
15
|
+
## Publish on every push
|
|
16
|
+
|
|
17
|
+
This repository includes a GitHub Actions workflow that builds and publishes the package on every push.
|
|
18
|
+
|
|
19
|
+
Set this repository secret before pushing:
|
|
20
|
+
|
|
21
|
+
- `PYPI_API_TOKEN`: your PyPI token (`pypi-...`).
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1,24 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=69", "wheel", "build"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "dsqus"
|
|
7
|
+
version = "0.dev4"
|
|
8
|
+
description = "dsqusss Python package"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10"
|
|
11
|
+
authors = [
|
|
12
|
+
{ name = "Sanjog Sigdel" }
|
|
13
|
+
]
|
|
14
|
+
dependencies = []
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/sigdelsanjog/dsqus"
|
|
18
|
+
Repository = "https://github.com/sigdelsanjog/dsqus"
|
|
19
|
+
|
|
20
|
+
[tool.setuptools]
|
|
21
|
+
package-dir = {"" = "dsqus"}
|
|
22
|
+
|
|
23
|
+
[tool.setuptools.packages.find]
|
|
24
|
+
where = ["dsqus"]
|
dsqus-0.dev4/setup.cfg
ADDED