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 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,3 @@
1
+ """asuran - A Python package."""
2
+
3
+ __version__ = "0.0.1"
@@ -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,8 @@
1
+ README.md
2
+ pyproject.toml
3
+ setup.py
4
+ asuran/__init__.py
5
+ asuran.egg-info/PKG-INFO
6
+ asuran.egg-info/SOURCES.txt
7
+ asuran.egg-info/dependency_links.txt
8
+ asuran.egg-info/top_level.txt
@@ -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
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
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
+ )