lean-sync 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 @@
1
+ MIT
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: lean_sync
3
+ Version: 0.0.1
4
+ Summary: lean_sync package
5
+ Author-email: rexwzh <1073853456@qq.com>
6
+ License-Expression: MIT
7
+ Keywords: lean_sync
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: license-file
14
+
15
+ # lean_sync
16
+
17
+ lean_sync package
18
+
19
+ ## Quick Start
20
+
21
+ ```bash
22
+ chattool pypi doctor --project-dir .
23
+ chattool pypi build --project-dir .
24
+ chattool pypi check --project-dir .
25
+ ```
@@ -0,0 +1,11 @@
1
+ # lean_sync
2
+
3
+ lean_sync package
4
+
5
+ ## Quick Start
6
+
7
+ ```bash
8
+ chattool pypi doctor --project-dir .
9
+ chattool pypi build --project-dir .
10
+ chattool pypi check --project-dir .
11
+ ```
@@ -0,0 +1,26 @@
1
+ [build-system]
2
+ requires = ["setuptools>=61.0", "wheel"]
3
+ build-backend = "setuptools.build_meta"
4
+
5
+ [project]
6
+ name = "lean_sync"
7
+ dynamic = ["version"]
8
+ description = "lean_sync package"
9
+ readme = "README.md"
10
+ requires-python = ">=3.10"
11
+ license = "MIT"
12
+ authors = [{name = "rexwzh", email = "1073853456@qq.com"}]
13
+ keywords = ["lean_sync"]
14
+ classifiers = [
15
+ "Programming Language :: Python :: 3",
16
+ "Operating System :: OS Independent",
17
+ ]
18
+
19
+ [tool.setuptools.dynamic]
20
+ version = {attr = "lean_sync.__version__"}
21
+
22
+ [tool.setuptools.packages.find]
23
+ where = ["src"]
24
+
25
+ [tool.setuptools]
26
+ include-package-data = true
@@ -0,0 +1,4 @@
1
+ [egg_info]
2
+ tag_build =
3
+ tag_date = 0
4
+
@@ -0,0 +1,5 @@
1
+ """lean_sync package."""
2
+
3
+ __all__ = ["__version__"]
4
+
5
+ __version__ = "0.0.1"
@@ -0,0 +1,25 @@
1
+ Metadata-Version: 2.4
2
+ Name: lean_sync
3
+ Version: 0.0.1
4
+ Summary: lean_sync package
5
+ Author-email: rexwzh <1073853456@qq.com>
6
+ License-Expression: MIT
7
+ Keywords: lean_sync
8
+ Classifier: Programming Language :: Python :: 3
9
+ Classifier: Operating System :: OS Independent
10
+ Requires-Python: >=3.10
11
+ Description-Content-Type: text/markdown
12
+ License-File: LICENSE
13
+ Dynamic: license-file
14
+
15
+ # lean_sync
16
+
17
+ lean_sync package
18
+
19
+ ## Quick Start
20
+
21
+ ```bash
22
+ chattool pypi doctor --project-dir .
23
+ chattool pypi build --project-dir .
24
+ chattool pypi check --project-dir .
25
+ ```
@@ -0,0 +1,9 @@
1
+ LICENSE
2
+ README.md
3
+ pyproject.toml
4
+ src/lean_sync/__init__.py
5
+ src/lean_sync.egg-info/PKG-INFO
6
+ src/lean_sync.egg-info/SOURCES.txt
7
+ src/lean_sync.egg-info/dependency_links.txt
8
+ src/lean_sync.egg-info/top_level.txt
9
+ tests/test_version.py
@@ -0,0 +1 @@
1
+ lean_sync
@@ -0,0 +1,5 @@
1
+ from lean_sync import __version__
2
+
3
+
4
+ def test_version_present():
5
+ assert __version__ == "0.0.1"