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.
@@ -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.
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,7 @@
1
+ README.md
2
+ setup.py
3
+ secuscan/__init__.py
4
+ secuscan.egg-info/PKG-INFO
5
+ secuscan.egg-info/SOURCES.txt
6
+ secuscan.egg-info/dependency_links.txt
7
+ secuscan.egg-info/top_level.txt
@@ -0,0 +1 @@
1
+ secuscan
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -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
+ )