gitwiki 0.1.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.
- gitwiki-0.1.1/LICENSE +3 -0
- gitwiki-0.1.1/PKG-INFO +35 -0
- gitwiki-0.1.1/README.md +3 -0
- gitwiki-0.1.1/pyproject.toml +48 -0
- gitwiki-0.1.1/setup.cfg +4 -0
- gitwiki-0.1.1/src/gitwiki/__init__.py +1 -0
- gitwiki-0.1.1/src/gitwiki/cli.py +4 -0
- gitwiki-0.1.1/src/gitwiki/main.py +4 -0
- gitwiki-0.1.1/src/gitwiki.egg-info/PKG-INFO +35 -0
- gitwiki-0.1.1/src/gitwiki.egg-info/SOURCES.txt +12 -0
- gitwiki-0.1.1/src/gitwiki.egg-info/dependency_links.txt +1 -0
- gitwiki-0.1.1/src/gitwiki.egg-info/entry_points.txt +3 -0
- gitwiki-0.1.1/src/gitwiki.egg-info/requires.txt +2 -0
- gitwiki-0.1.1/src/gitwiki.egg-info/top_level.txt +1 -0
gitwiki-0.1.1/LICENSE
ADDED
gitwiki-0.1.1/PKG-INFO
ADDED
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitwiki
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: gitwiki
|
|
5
|
+
Author-email: ooooofish <ooooofish@126.com>
|
|
6
|
+
Maintainer-email: ooooofish <ooooofish@126.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
Project-URL: Homepage, https://gitee.com/whillhill/gitwiki
|
|
12
|
+
Project-URL: Bug Tracker, https://gitee.com/whillhill/gitwiki/issues
|
|
13
|
+
Project-URL: Documentation, https://gitee.com/whillhill/gitwiki/wikis
|
|
14
|
+
Project-URL: Repository, https://gitee.com/whillhill/gitwiki.git
|
|
15
|
+
Project-URL: Source Code, https://gitee.com/whillhill/gitwiki
|
|
16
|
+
Classifier: Development Status :: 3 - Alpha
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Topic :: Office/Business :: Scheduling
|
|
25
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
26
|
+
Requires-Python: >=3.11
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: rich>=13.0.0
|
|
30
|
+
Requires-Dist: mcp>=0.1.0
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# gitwiki
|
|
34
|
+
|
|
35
|
+
|
gitwiki-0.1.1/README.md
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "gitwiki"
|
|
7
|
+
version = "0.1.1"
|
|
8
|
+
description = "gitwiki"
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
license = {file = "LICENSE"}
|
|
11
|
+
authors = [
|
|
12
|
+
{name = "ooooofish", email = "ooooofish@126.com"}
|
|
13
|
+
]
|
|
14
|
+
maintainers = [
|
|
15
|
+
{name = "ooooofish", email = "ooooofish@126.com"}
|
|
16
|
+
]
|
|
17
|
+
|
|
18
|
+
classifiers = [
|
|
19
|
+
"Development Status :: 3 - Alpha",
|
|
20
|
+
"Intended Audience :: Developers",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Operating System :: OS Independent",
|
|
23
|
+
"Programming Language :: Python :: 3",
|
|
24
|
+
"Programming Language :: Python :: 3.11",
|
|
25
|
+
"Programming Language :: Python :: 3.12",
|
|
26
|
+
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
27
|
+
"Topic :: Office/Business :: Scheduling",
|
|
28
|
+
"Topic :: Software Development :: Version Control :: Git",
|
|
29
|
+
]
|
|
30
|
+
requires-python = ">=3.11"
|
|
31
|
+
dependencies = [
|
|
32
|
+
"rich>=13.0.0",
|
|
33
|
+
"mcp>=0.1.0",
|
|
34
|
+
]
|
|
35
|
+
|
|
36
|
+
[project.urls]
|
|
37
|
+
Homepage = "https://gitee.com/whillhill/gitwiki"
|
|
38
|
+
"Bug Tracker" = "https://gitee.com/whillhill/gitwiki/issues"
|
|
39
|
+
Documentation = "https://gitee.com/whillhill/gitwiki/wikis"
|
|
40
|
+
Repository = "https://gitee.com/whillhill/gitwiki.git"
|
|
41
|
+
"Source Code" = "https://gitee.com/whillhill/gitwiki"
|
|
42
|
+
|
|
43
|
+
[project.scripts]
|
|
44
|
+
gitwiki = "gitwiki.main:main"
|
|
45
|
+
gitwiki-cli = "gitwiki.cli:main"
|
|
46
|
+
|
|
47
|
+
[tool.setuptools]
|
|
48
|
+
package-dir = {"" = "src"}
|
gitwiki-0.1.1/setup.cfg
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
""""""
|
|
@@ -0,0 +1,35 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: gitwiki
|
|
3
|
+
Version: 0.1.1
|
|
4
|
+
Summary: gitwiki
|
|
5
|
+
Author-email: ooooofish <ooooofish@126.com>
|
|
6
|
+
Maintainer-email: ooooofish <ooooofish@126.com>
|
|
7
|
+
License: MIT License
|
|
8
|
+
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
Project-URL: Homepage, https://gitee.com/whillhill/gitwiki
|
|
12
|
+
Project-URL: Bug Tracker, https://gitee.com/whillhill/gitwiki/issues
|
|
13
|
+
Project-URL: Documentation, https://gitee.com/whillhill/gitwiki/wikis
|
|
14
|
+
Project-URL: Repository, https://gitee.com/whillhill/gitwiki.git
|
|
15
|
+
Project-URL: Source Code, https://gitee.com/whillhill/gitwiki
|
|
16
|
+
Classifier: Development Status :: 3 - Alpha
|
|
17
|
+
Classifier: Intended Audience :: Developers
|
|
18
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
19
|
+
Classifier: Operating System :: OS Independent
|
|
20
|
+
Classifier: Programming Language :: Python :: 3
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
23
|
+
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
24
|
+
Classifier: Topic :: Office/Business :: Scheduling
|
|
25
|
+
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
26
|
+
Requires-Python: >=3.11
|
|
27
|
+
Description-Content-Type: text/markdown
|
|
28
|
+
License-File: LICENSE
|
|
29
|
+
Requires-Dist: rich>=13.0.0
|
|
30
|
+
Requires-Dist: mcp>=0.1.0
|
|
31
|
+
Dynamic: license-file
|
|
32
|
+
|
|
33
|
+
# gitwiki
|
|
34
|
+
|
|
35
|
+
|
|
@@ -0,0 +1,12 @@
|
|
|
1
|
+
LICENSE
|
|
2
|
+
README.md
|
|
3
|
+
pyproject.toml
|
|
4
|
+
src/gitwiki/__init__.py
|
|
5
|
+
src/gitwiki/cli.py
|
|
6
|
+
src/gitwiki/main.py
|
|
7
|
+
src/gitwiki.egg-info/PKG-INFO
|
|
8
|
+
src/gitwiki.egg-info/SOURCES.txt
|
|
9
|
+
src/gitwiki.egg-info/dependency_links.txt
|
|
10
|
+
src/gitwiki.egg-info/entry_points.txt
|
|
11
|
+
src/gitwiki.egg-info/requires.txt
|
|
12
|
+
src/gitwiki.egg-info/top_level.txt
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
gitwiki
|