tilscn-test 1.0.0__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.
- tilscn_test-1.0.0/PKG-INFO +9 -0
- tilscn_test-1.0.0/pyproject.toml +17 -0
- tilscn_test-1.0.0/setup.cfg +4 -0
- tilscn_test-1.0.0/tilscn_test/__init__.py +0 -0
- tilscn_test-1.0.0/tilscn_test/module.py +5 -0
- tilscn_test-1.0.0/tilscn_test.egg-info/PKG-INFO +9 -0
- tilscn_test-1.0.0/tilscn_test.egg-info/SOURCES.txt +7 -0
- tilscn_test-1.0.0/tilscn_test.egg-info/dependency_links.txt +1 -0
- tilscn_test-1.0.0/tilscn_test.egg-info/top_level.txt +1 -0
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tilscn-test
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A short description
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Requires-Python: >=3.6
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=45", "wheel", "setuptools_scm[toml]>=6.2"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "tilscn-test"
|
|
7
|
+
version = "1.0.0"
|
|
8
|
+
description = "A short description"
|
|
9
|
+
requires-python = ">=3.6"
|
|
10
|
+
authors = [
|
|
11
|
+
{name = "Your Name", email = "your.email@example.com"}
|
|
12
|
+
]
|
|
13
|
+
license = {text = "MIT"}
|
|
14
|
+
classifiers = [
|
|
15
|
+
"Programming Language :: Python :: 3",
|
|
16
|
+
"License :: OSI Approved :: MIT License",
|
|
17
|
+
]
|
|
File without changes
|
|
@@ -0,0 +1,9 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: tilscn-test
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: A short description
|
|
5
|
+
Author-email: Your Name <your.email@example.com>
|
|
6
|
+
License: MIT
|
|
7
|
+
Classifier: Programming Language :: Python :: 3
|
|
8
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
9
|
+
Requires-Python: >=3.6
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
tilscn_test
|