secuscan 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.
- secuscan-0.0.1/PKG-INFO +20 -0
- secuscan-0.0.1/README.md +0 -0
- secuscan-0.0.1/secuscan/__init__.py +0 -0
- secuscan-0.0.1/secuscan.egg-info/PKG-INFO +20 -0
- secuscan-0.0.1/secuscan.egg-info/SOURCES.txt +7 -0
- secuscan-0.0.1/secuscan.egg-info/dependency_links.txt +1 -0
- secuscan-0.0.1/secuscan.egg-info/top_level.txt +1 -0
- secuscan-0.0.1/setup.cfg +4 -0
- secuscan-0.0.1/setup.py +18 -0
secuscan-0.0.1/PKG-INFO
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: secuscan
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for SecuScan name reservation
|
|
5
|
+
Author: Your Name
|
|
6
|
+
Author-email: your.email@example.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
This is a reserved package name.
|
secuscan-0.0.1/README.md
ADDED
|
Binary file
|
|
File without changes
|
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: secuscan
|
|
3
|
+
Version: 0.0.1
|
|
4
|
+
Summary: Placeholder for SecuScan name reservation
|
|
5
|
+
Author: Your Name
|
|
6
|
+
Author-email: your.email@example.com
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Classifier: Operating System :: OS Independent
|
|
10
|
+
Requires-Python: >=3.6
|
|
11
|
+
Description-Content-Type: text/markdown
|
|
12
|
+
Dynamic: author
|
|
13
|
+
Dynamic: author-email
|
|
14
|
+
Dynamic: classifier
|
|
15
|
+
Dynamic: description
|
|
16
|
+
Dynamic: description-content-type
|
|
17
|
+
Dynamic: requires-python
|
|
18
|
+
Dynamic: summary
|
|
19
|
+
|
|
20
|
+
This is a reserved package name.
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
secuscan
|
secuscan-0.0.1/setup.cfg
ADDED
secuscan-0.0.1/setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from setuptools import setup, find_packages
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="secuscan", # The name you want to reserve
|
|
5
|
+
version="0.0.1",
|
|
6
|
+
author="Your Name",
|
|
7
|
+
author_email="your.email@example.com",
|
|
8
|
+
description="Placeholder for SecuScan name reservation",
|
|
9
|
+
long_description="This is a reserved package name.",
|
|
10
|
+
long_description_content_type="text/markdown",
|
|
11
|
+
packages=find_packages(),
|
|
12
|
+
classifiers=[
|
|
13
|
+
"Programming Language :: Python :: 3",
|
|
14
|
+
"License :: OSI Approved :: MIT License",
|
|
15
|
+
"Operating System :: OS Independent",
|
|
16
|
+
],
|
|
17
|
+
python_requires='>=3.6',
|
|
18
|
+
)
|