osslag 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.
- osslag-1.0.0/PKG-INFO +46 -0
- osslag-1.0.0/README.md +21 -0
- osslag-1.0.0/pyproject.toml +85 -0
- osslag-1.0.0/src/osslag/__init__.py +0 -0
- osslag-1.0.0/src/osslag/cli.py +1380 -0
- osslag-1.0.0/src/osslag/distro/__init__.py +0 -0
- osslag-1.0.0/src/osslag/distro/debian.py +382 -0
- osslag-1.0.0/src/osslag/distro/fedora.py +38 -0
- osslag-1.0.0/src/osslag/metrics/__init__.py +0 -0
- osslag-1.0.0/src/osslag/metrics/malta.py +585 -0
- osslag-1.0.0/src/osslag/metrics/pvac.py +166 -0
- osslag-1.0.0/src/osslag/utils/__init__.py +0 -0
- osslag-1.0.0/src/osslag/utils/github_helper.py +240 -0
- osslag-1.0.0/src/osslag/utils/vcs.py +543 -0
osslag-1.0.0/PKG-INFO
ADDED
|
@@ -0,0 +1,46 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: osslag
|
|
3
|
+
Version: 1.0.0
|
|
4
|
+
Summary: Technical Lag tools for Open Source Software Projects
|
|
5
|
+
Keywords: oss,open source,technical lag,software lag,software maintenance
|
|
6
|
+
Author: Shane Panter
|
|
7
|
+
Author-email: Shane Panter <shanepanter@boisestate.edu>
|
|
8
|
+
License: MIT
|
|
9
|
+
Classifier: Intended Audience :: Science/Research
|
|
10
|
+
Classifier: License :: OSI Approved :: MIT License
|
|
11
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
12
|
+
Requires-Dist: dotenv>=0.9.9
|
|
13
|
+
Requires-Dist: pandas>=3.0.0
|
|
14
|
+
Requires-Dist: pygit2>=1.19.1
|
|
15
|
+
Requires-Dist: pygithub>=2.8.1
|
|
16
|
+
Requires-Dist: python-dateutil>=2.9.0.post0
|
|
17
|
+
Requires-Dist: python-debian>=1.0.1
|
|
18
|
+
Requires-Dist: requests>=2.32.5
|
|
19
|
+
Requires-Dist: rich>=14.3.1
|
|
20
|
+
Requires-Dist: typer>=0.21.1
|
|
21
|
+
Requires-Python: >=3.14
|
|
22
|
+
Project-URL: Homepage, https://github.com/shanep/osslag
|
|
23
|
+
Project-URL: Issues, https://github.com/shanep/osslag/issues
|
|
24
|
+
Description-Content-Type: text/markdown
|
|
25
|
+
|
|
26
|
+
# OSS-Lag: Open Source Software Lag Dataset
|
|
27
|
+
|
|
28
|
+
This repository contains code to build a dataset measuring technical lag and
|
|
29
|
+
abandonment of open source packages across multiple Linux distributions.
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
## Installation
|
|
33
|
+
|
|
34
|
+
You can install from PyPI using pip:
|
|
35
|
+
|
|
36
|
+
```bash
|
|
37
|
+
pip install osslag
|
|
38
|
+
```
|
|
39
|
+
|
|
40
|
+
## Usage
|
|
41
|
+
|
|
42
|
+
Run the cli tool with `--help` to see available commands and options:
|
|
43
|
+
|
|
44
|
+
```bash
|
|
45
|
+
osslag --help
|
|
46
|
+
```
|
osslag-1.0.0/README.md
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# OSS-Lag: Open Source Software Lag Dataset
|
|
2
|
+
|
|
3
|
+
This repository contains code to build a dataset measuring technical lag and
|
|
4
|
+
abandonment of open source packages across multiple Linux distributions.
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
You can install from PyPI using pip:
|
|
10
|
+
|
|
11
|
+
```bash
|
|
12
|
+
pip install osslag
|
|
13
|
+
```
|
|
14
|
+
|
|
15
|
+
## Usage
|
|
16
|
+
|
|
17
|
+
Run the cli tool with `--help` to see available commands and options:
|
|
18
|
+
|
|
19
|
+
```bash
|
|
20
|
+
osslag --help
|
|
21
|
+
```
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
[build-system]
|
|
2
|
+
requires = ["uv_build>=0.9.28,<0.10.0"]
|
|
3
|
+
build-backend = "uv_build"
|
|
4
|
+
|
|
5
|
+
[project.scripts]
|
|
6
|
+
osslag = "osslag.cli:main"
|
|
7
|
+
|
|
8
|
+
[project]
|
|
9
|
+
name = "osslag"
|
|
10
|
+
version = "1.0.0"
|
|
11
|
+
description = "Technical Lag tools for Open Source Software Projects"
|
|
12
|
+
readme = "README.md"
|
|
13
|
+
authors = [
|
|
14
|
+
{ name = "Shane Panter", email = "shanepanter@boisestate.edu" }
|
|
15
|
+
]
|
|
16
|
+
requires-python = ">=3.14"
|
|
17
|
+
license = { text = "MIT" }
|
|
18
|
+
keywords = ["oss", "open source", "technical lag", "software lag", "software maintenance"]
|
|
19
|
+
classifiers = [
|
|
20
|
+
"Intended Audience :: Science/Research",
|
|
21
|
+
"License :: OSI Approved :: MIT License",
|
|
22
|
+
"Programming Language :: Python :: 3.14"
|
|
23
|
+
]
|
|
24
|
+
|
|
25
|
+
dependencies = [
|
|
26
|
+
"dotenv>=0.9.9",
|
|
27
|
+
"pandas>=3.0.0",
|
|
28
|
+
"pygit2>=1.19.1",
|
|
29
|
+
"pygithub>=2.8.1",
|
|
30
|
+
"python-dateutil>=2.9.0.post0",
|
|
31
|
+
"python-debian>=1.0.1",
|
|
32
|
+
"requests>=2.32.5",
|
|
33
|
+
"rich>=14.3.1",
|
|
34
|
+
"typer>=0.21.1",
|
|
35
|
+
]
|
|
36
|
+
|
|
37
|
+
[project.urls]
|
|
38
|
+
Homepage = "https://github.com/shanep/osslag"
|
|
39
|
+
Issues = "https://github.com/shanep/osslag/issues"
|
|
40
|
+
|
|
41
|
+
[tool.deptry.package_module_name_map]
|
|
42
|
+
python-debian = "debian"
|
|
43
|
+
pygithub = "github"
|
|
44
|
+
python-dateutil = "dateutil"
|
|
45
|
+
|
|
46
|
+
|
|
47
|
+
[tool.pytest.ini_options]
|
|
48
|
+
testpaths = [
|
|
49
|
+
"tests"
|
|
50
|
+
]
|
|
51
|
+
pythonpath = [
|
|
52
|
+
"src"
|
|
53
|
+
]
|
|
54
|
+
|
|
55
|
+
[dependency-groups]
|
|
56
|
+
dev = [
|
|
57
|
+
"deptry>=0.24.0",
|
|
58
|
+
"pycheck>=0.1",
|
|
59
|
+
"pyright>=1.1.408",
|
|
60
|
+
"pytest>=9.0.2",
|
|
61
|
+
"ruff>=0.14.14",
|
|
62
|
+
"uv>=0.9.28",
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
|
|
66
|
+
[tool.ruff]
|
|
67
|
+
line-length = 88
|
|
68
|
+
indent-width = 4
|
|
69
|
+
|
|
70
|
+
|
|
71
|
+
[tool.ruff.lint]
|
|
72
|
+
# Enable Pyflakes (`F`) and a subset of the pycodestyle (`E`) codes by default.
|
|
73
|
+
select = ["E4", "E7", "E9", "F"]
|
|
74
|
+
ignore = []
|
|
75
|
+
fixable = ["ALL"]
|
|
76
|
+
unfixable = []
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
[tool.ruff.format]
|
|
80
|
+
quote-style = "double"
|
|
81
|
+
indent-style = "space"
|
|
82
|
+
skip-magic-trailing-comma = false
|
|
83
|
+
line-ending = "auto"
|
|
84
|
+
docstring-code-format = true
|
|
85
|
+
docstring-code-line-length = "dynamic"
|
|
File without changes
|