github-archive 7.0.0__tar.gz → 7.0.2__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_archive-7.0.0 → github_archive-7.0.2}/PKG-INFO +3 -16
- github_archive-7.0.2/github_archive/_version.py +1 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive.egg-info/PKG-INFO +3 -16
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive.egg-info/SOURCES.txt +0 -1
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive.egg-info/top_level.txt +2 -0
- github_archive-7.0.2/pyproject.toml +57 -0
- github_archive-7.0.0/github_archive/_version.py +0 -1
- github_archive-7.0.0/pyproject.toml +0 -16
- github_archive-7.0.0/setup.py +0 -68
- {github_archive-7.0.0 → github_archive-7.0.2}/LICENSE +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/README.md +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/__init__.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/archive.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/cli.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/constants.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/gists.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/logger.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/py.typed +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive/repos.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive.egg-info/dependency_links.txt +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive.egg-info/entry_points.txt +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/github_archive.egg-info/requires.txt +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/setup.cfg +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/test/unit/__init__.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/test/unit/conftest.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/test/unit/test_archive.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/test/unit/test_gists.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/test/unit/test_logger.py +0 -0
- {github_archive-7.0.0 → github_archive-7.0.2}/test/unit/test_repos.py +0 -0
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-archive
|
|
3
|
-
Version: 7.0.
|
|
3
|
+
Version: 7.0.2
|
|
4
4
|
Summary: A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive.
|
|
5
|
-
Home-page: http://github.com/justintime50/github-archive
|
|
6
5
|
Author: Justintime50
|
|
7
6
|
License: MIT
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.10, <4
|
|
7
|
+
Project-URL: Homepage, http://github.com/justintime50/github-archive
|
|
8
|
+
Requires-Python: <4,>=3.10
|
|
12
9
|
Description-Content-Type: text/markdown
|
|
13
10
|
License-File: LICENSE
|
|
14
11
|
Requires-Dist: PyGithub==2.8.*
|
|
@@ -22,17 +19,7 @@ Requires-Dist: isort==7.*; extra == "dev"
|
|
|
22
19
|
Requires-Dist: mypy==1.18.*; extra == "dev"
|
|
23
20
|
Requires-Dist: pytest==9.*; extra == "dev"
|
|
24
21
|
Requires-Dist: pytest-cov==7.*; extra == "dev"
|
|
25
|
-
Dynamic: author
|
|
26
|
-
Dynamic: classifier
|
|
27
|
-
Dynamic: description
|
|
28
|
-
Dynamic: description-content-type
|
|
29
|
-
Dynamic: home-page
|
|
30
|
-
Dynamic: license
|
|
31
22
|
Dynamic: license-file
|
|
32
|
-
Dynamic: provides-extra
|
|
33
|
-
Dynamic: requires-dist
|
|
34
|
-
Dynamic: requires-python
|
|
35
|
-
Dynamic: summary
|
|
36
23
|
|
|
37
24
|
<div align="center">
|
|
38
25
|
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "7.0.2"
|
|
@@ -1,14 +1,11 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github-archive
|
|
3
|
-
Version: 7.0.
|
|
3
|
+
Version: 7.0.2
|
|
4
4
|
Summary: A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive.
|
|
5
|
-
Home-page: http://github.com/justintime50/github-archive
|
|
6
5
|
Author: Justintime50
|
|
7
6
|
License: MIT
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
Classifier: Operating System :: OS Independent
|
|
11
|
-
Requires-Python: >=3.10, <4
|
|
7
|
+
Project-URL: Homepage, http://github.com/justintime50/github-archive
|
|
8
|
+
Requires-Python: <4,>=3.10
|
|
12
9
|
Description-Content-Type: text/markdown
|
|
13
10
|
License-File: LICENSE
|
|
14
11
|
Requires-Dist: PyGithub==2.8.*
|
|
@@ -22,17 +19,7 @@ Requires-Dist: isort==7.*; extra == "dev"
|
|
|
22
19
|
Requires-Dist: mypy==1.18.*; extra == "dev"
|
|
23
20
|
Requires-Dist: pytest==9.*; extra == "dev"
|
|
24
21
|
Requires-Dist: pytest-cov==7.*; extra == "dev"
|
|
25
|
-
Dynamic: author
|
|
26
|
-
Dynamic: classifier
|
|
27
|
-
Dynamic: description
|
|
28
|
-
Dynamic: description-content-type
|
|
29
|
-
Dynamic: home-page
|
|
30
|
-
Dynamic: license
|
|
31
22
|
Dynamic: license-file
|
|
32
|
-
Dynamic: provides-extra
|
|
33
|
-
Dynamic: requires-dist
|
|
34
|
-
Dynamic: requires-python
|
|
35
|
-
Dynamic: summary
|
|
36
23
|
|
|
37
24
|
<div align="center">
|
|
38
25
|
|
|
@@ -0,0 +1,57 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["setuptools>=61.0", "wheel"]
|
|
3
|
+
build-backend = "setuptools.build_meta"
|
|
4
|
+
|
|
5
|
+
[project]
|
|
6
|
+
name = "github-archive"
|
|
7
|
+
description = "A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive."
|
|
8
|
+
dynamic = ["version"]
|
|
9
|
+
readme = "README.md"
|
|
10
|
+
requires-python = ">=3.10, <4"
|
|
11
|
+
license = { text = "MIT" }
|
|
12
|
+
authors = [{ name = "Justintime50" }]
|
|
13
|
+
dependencies = ["PyGithub == 2.8.*", "woodchips == 2.*"]
|
|
14
|
+
|
|
15
|
+
[project.optional-dependencies]
|
|
16
|
+
dev = [
|
|
17
|
+
"bandit == 1.9.*",
|
|
18
|
+
"black == 25.*",
|
|
19
|
+
"build == 1.3.*",
|
|
20
|
+
"flake8 == 7.*",
|
|
21
|
+
"isort == 7.*",
|
|
22
|
+
"mypy == 1.18.*",
|
|
23
|
+
"pytest == 9.*",
|
|
24
|
+
"pytest-cov == 7.*",
|
|
25
|
+
]
|
|
26
|
+
|
|
27
|
+
[tool.setuptools.dynamic]
|
|
28
|
+
version = { attr = "github_archive._version.__version__" }
|
|
29
|
+
|
|
30
|
+
[project.urls]
|
|
31
|
+
Homepage = "http://github.com/justintime50/github-archive"
|
|
32
|
+
|
|
33
|
+
[tool.setuptools.packages.find]
|
|
34
|
+
exclude = ["test"]
|
|
35
|
+
|
|
36
|
+
[tool.setuptools.package-data]
|
|
37
|
+
github_archive = ["py.typed"]
|
|
38
|
+
|
|
39
|
+
[project.scripts]
|
|
40
|
+
github-archive = "github_archive.cli:main"
|
|
41
|
+
|
|
42
|
+
[tool.black]
|
|
43
|
+
line-length = 120
|
|
44
|
+
|
|
45
|
+
[tool.isort]
|
|
46
|
+
profile = "black"
|
|
47
|
+
line_length = 120
|
|
48
|
+
indent = 4
|
|
49
|
+
force_grid_wrap = 2
|
|
50
|
+
multi_line_output = 3
|
|
51
|
+
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
|
|
52
|
+
lines_after_imports = 2
|
|
53
|
+
include_trailing_comma = true
|
|
54
|
+
use_parentheses = true
|
|
55
|
+
|
|
56
|
+
[tool.mypy]
|
|
57
|
+
disable_error_code = "import-untyped"
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "7.0.0"
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
[tool.black]
|
|
2
|
-
line-length = 120
|
|
3
|
-
|
|
4
|
-
[tool.isort]
|
|
5
|
-
profile = "black"
|
|
6
|
-
line_length = 120
|
|
7
|
-
indent = 4
|
|
8
|
-
force_grid_wrap = 2
|
|
9
|
-
multi_line_output = 3
|
|
10
|
-
sections = "FUTURE,STDLIB,THIRDPARTY,FIRSTPARTY,LOCALFOLDER"
|
|
11
|
-
lines_after_imports = 2
|
|
12
|
-
include_trailing_comma = true
|
|
13
|
-
use_parentheses = true
|
|
14
|
-
|
|
15
|
-
[tool.mypy]
|
|
16
|
-
disable_error_code = "import-untyped"
|
github_archive-7.0.0/setup.py
DELETED
|
@@ -1,68 +0,0 @@
|
|
|
1
|
-
import re
|
|
2
|
-
|
|
3
|
-
import setuptools
|
|
4
|
-
|
|
5
|
-
with open('README.md', 'r') as readme_file:
|
|
6
|
-
long_description = readme_file.read()
|
|
7
|
-
|
|
8
|
-
# Inspiration: https://stackoverflow.com/a/7071358/6064135
|
|
9
|
-
with open('github_archive/_version.py', 'r') as version_file:
|
|
10
|
-
version_groups = re.search(r"^__version__ = ['\"]([^'\"]*)['\"]", version_file.read(), re.M)
|
|
11
|
-
if version_groups:
|
|
12
|
-
version = version_groups.group(1)
|
|
13
|
-
else:
|
|
14
|
-
raise RuntimeError('Unable to find version string!')
|
|
15
|
-
|
|
16
|
-
REQUIREMENTS = [
|
|
17
|
-
'PyGithub == 2.8.*',
|
|
18
|
-
'woodchips == 2.*',
|
|
19
|
-
]
|
|
20
|
-
|
|
21
|
-
DEV_REQUIREMENTS = [
|
|
22
|
-
'bandit == 1.9.*',
|
|
23
|
-
'black == 25.*',
|
|
24
|
-
'build == 1.3.*',
|
|
25
|
-
'flake8 == 7.*',
|
|
26
|
-
'isort == 7.*',
|
|
27
|
-
'mypy == 1.18.*',
|
|
28
|
-
'pytest == 9.*',
|
|
29
|
-
'pytest-cov == 7.*',
|
|
30
|
-
]
|
|
31
|
-
|
|
32
|
-
setuptools.setup(
|
|
33
|
-
name='github-archive',
|
|
34
|
-
version=version,
|
|
35
|
-
description=(
|
|
36
|
-
'A powerful tool to concurrently clone, pull, or fork user and org repos and gists to create a GitHub archive.'
|
|
37
|
-
),
|
|
38
|
-
long_description=long_description,
|
|
39
|
-
long_description_content_type="text/markdown",
|
|
40
|
-
url='http://github.com/justintime50/github-archive',
|
|
41
|
-
author='Justintime50',
|
|
42
|
-
license='MIT',
|
|
43
|
-
packages=setuptools.find_packages(
|
|
44
|
-
exclude=[
|
|
45
|
-
'test',
|
|
46
|
-
]
|
|
47
|
-
),
|
|
48
|
-
package_data={
|
|
49
|
-
'github_archive': [
|
|
50
|
-
'py.typed',
|
|
51
|
-
]
|
|
52
|
-
},
|
|
53
|
-
classifiers=[
|
|
54
|
-
"Programming Language :: Python :: 3",
|
|
55
|
-
"License :: OSI Approved :: MIT License",
|
|
56
|
-
"Operating System :: OS Independent",
|
|
57
|
-
],
|
|
58
|
-
install_requires=REQUIREMENTS,
|
|
59
|
-
extras_require={
|
|
60
|
-
'dev': DEV_REQUIREMENTS,
|
|
61
|
-
},
|
|
62
|
-
entry_points={
|
|
63
|
-
'console_scripts': [
|
|
64
|
-
'github-archive=github_archive.cli:main',
|
|
65
|
-
]
|
|
66
|
-
},
|
|
67
|
-
python_requires='>=3.10, <4',
|
|
68
|
-
)
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|