github-sync-agent 0.2.0__tar.gz → 0.2.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.
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/PKG-INFO +4 -4
- github_sync_agent-0.2.1/github_sync/__init__.py +1 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/PKG-INFO +4 -4
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/pyproject.toml +6 -5
- github_sync_agent-0.2.0/github_sync/__init__.py +0 -1
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/README.md +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync/agent.py +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync/api.py +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync/cli.py +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync/config.py +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync/setup.py +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/SOURCES.txt +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/dependency_links.txt +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/entry_points.txt +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/requires.txt +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/top_level.txt +0 -0
- {github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/setup.cfg +0 -0
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-sync-agent
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Sync all your local projects to GitHub automatically
|
|
5
|
-
|
|
5
|
+
Author-email: GitHub Sync Agent Maintainers <yuvalavni@users.noreply.github.com>
|
|
6
|
+
License-Expression: MIT
|
|
6
7
|
Project-URL: Homepage, https://github.com/yuvalavni/Agents
|
|
7
8
|
Project-URL: Repository, https://github.com/yuvalavni/Agents
|
|
8
|
-
Project-URL:
|
|
9
|
+
Project-URL: Issues, https://github.com/yuvalavni/Agents/issues
|
|
9
10
|
Keywords: github,git,sync,backup,automation,cli,api
|
|
10
11
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Operating System :: POSIX :: Linux
|
|
13
13
|
Classifier: Environment :: Console
|
|
14
14
|
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.2.1"
|
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-sync-agent
|
|
3
|
-
Version: 0.2.
|
|
3
|
+
Version: 0.2.1
|
|
4
4
|
Summary: Sync all your local projects to GitHub automatically
|
|
5
|
-
|
|
5
|
+
Author-email: GitHub Sync Agent Maintainers <yuvalavni@users.noreply.github.com>
|
|
6
|
+
License-Expression: MIT
|
|
6
7
|
Project-URL: Homepage, https://github.com/yuvalavni/Agents
|
|
7
8
|
Project-URL: Repository, https://github.com/yuvalavni/Agents
|
|
8
|
-
Project-URL:
|
|
9
|
+
Project-URL: Issues, https://github.com/yuvalavni/Agents/issues
|
|
9
10
|
Keywords: github,git,sync,backup,automation,cli,api
|
|
10
11
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: License :: OSI Approved :: MIT License
|
|
12
12
|
Classifier: Operating System :: POSIX :: Linux
|
|
13
13
|
Classifier: Environment :: Console
|
|
14
14
|
Classifier: Topic :: Software Development :: Version Control :: Git
|
|
@@ -4,16 +4,17 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "github-sync-agent"
|
|
7
|
-
version = "0.2.
|
|
7
|
+
version = "0.2.1"
|
|
8
8
|
description = "Sync all your local projects to GitHub automatically"
|
|
9
9
|
readme = "README.md"
|
|
10
10
|
requires-python = ">=3.10"
|
|
11
|
-
license =
|
|
12
|
-
authors = [
|
|
11
|
+
license = "MIT"
|
|
12
|
+
authors = [
|
|
13
|
+
{ name = "GitHub Sync Agent Maintainers", email = "yuvalavni@users.noreply.github.com" },
|
|
14
|
+
]
|
|
13
15
|
keywords = ["github", "git", "sync", "backup", "automation", "cli", "api"]
|
|
14
16
|
classifiers = [
|
|
15
17
|
"Programming Language :: Python :: 3",
|
|
16
|
-
"License :: OSI Approved :: MIT License",
|
|
17
18
|
"Operating System :: POSIX :: Linux",
|
|
18
19
|
"Environment :: Console",
|
|
19
20
|
"Topic :: Software Development :: Version Control :: Git",
|
|
@@ -32,7 +33,7 @@ api = [
|
|
|
32
33
|
[project.urls]
|
|
33
34
|
Homepage = "https://github.com/yuvalavni/Agents"
|
|
34
35
|
Repository = "https://github.com/yuvalavni/Agents"
|
|
35
|
-
|
|
36
|
+
Issues = "https://github.com/yuvalavni/Agents/issues"
|
|
36
37
|
|
|
37
38
|
[project.scripts]
|
|
38
39
|
github-sync = "github_sync.cli:main"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.2.0"
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/dependency_links.txt
RENAMED
|
File without changes
|
{github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/entry_points.txt
RENAMED
|
File without changes
|
|
File without changes
|
{github_sync_agent-0.2.0 → github_sync_agent-0.2.1}/github_sync_agent.egg-info/top_level.txt
RENAMED
|
File without changes
|
|
File without changes
|