asuran 0.0.1__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.
- asuran-0.0.1/PKG-INFO +14 -0
- asuran-0.0.1/README.md +1 -0
- asuran-0.0.1/asuran/__init__.py +3 -0
- asuran-0.0.1/asuran.egg-info/PKG-INFO +14 -0
- asuran-0.0.1/asuran.egg-info/SOURCES.txt +8 -0
- asuran-0.0.1/asuran.egg-info/dependency_links.txt +1 -0
- asuran-0.0.1/asuran.egg-info/top_level.txt +1 -0
- asuran-0.0.1/pyproject.toml +17 -0
- asuran-0.0.1/setup.cfg +4 -0
- asuran-0.0.1/setup.py +18 -0
asuran-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asuran
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python package (placeholder).
|
|
5
|
+
Home-page: https://github.com/kactlabs/asuran
|
|
6
|
+
Author: kactlabs
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/kactlabs/asuran
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Dynamic: home-page
|
|
12
|
+
Dynamic: requires-python
|
|
13
|
+
|
|
14
|
+
# asuran
|
asuran-0.0.1/README.md
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
# asuran
|
|
@@ -0,0 +1,14 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: asuran
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: A Python package (placeholder).
|
|
5
|
+
Home-page: https://github.com/kactlabs/asuran
|
|
6
|
+
Author: kactlabs
|
|
7
|
+
License: MIT
|
|
8
|
+
Project-URL: Homepage, https://github.com/kactlabs/asuran
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
Dynamic: home-page
|
|
12
|
+
Dynamic: requires-python
|
|
13
|
+
|
|
14
|
+
# asuran
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
asuran
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "asuran"
|
|
7
|
+
version = "0.0.1"
|
|
8
|
+
description = "A Python package (placeholder)."
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.8"
|
|
11
|
+
license = {text = "MIT"}
|
|
12
|
+
authors = [
|
|
13
|
+
{name = "kactlabs"}
|
|
14
|
+
]
|
|
15
|
+
|
|
16
|
+
[project.urls]
|
|
17
|
+
Homepage = "https://github.com/kactlabs/asuran"
|
asuran-0.0.1/setup.cfg
ADDED
asuran-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="asuran",
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
description="A Python package (placeholder).",
|
|
7
|
+
long_description=open("README.md").read(),
|
|
8
|
+
long_description_content_type="text/markdown",
|
|
9
|
+
author="kactlabs",
|
|
10
|
+
url="https://github.com/kactlabs/asuran",
|
|
11
|
+
packages=find_packages(),
|
|
12
|
+
python_requires=">=3.8",
|
|
13
|
+
classifiers=[
|
|
14
|
+
"Programming Language :: Python :: 3",
|
|
15
|
+
"License :: OSI Approved :: MIT License",
|
|
16
|
+
"Operating System :: OS Independent",
|
|
17
|
+
],
|
|
18
|
+
)
|