troml-dev-status 0.1.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.
- troml_dev_status-0.1.0/.gitignore +208 -0
- troml_dev_status-0.1.0/LICENSE +21 -0
- troml_dev_status-0.1.0/PKG-INFO +114 -0
- troml_dev_status-0.1.0/README.md +81 -0
- troml_dev_status-0.1.0/pyproject.toml +128 -0
- troml_dev_status-0.1.0/troml_dev_status/__about__.py +17 -0
- troml_dev_status-0.1.0/troml_dev_status/__init__.py +0 -0
- troml_dev_status-0.1.0/troml_dev_status/__main__.py +6 -0
- troml_dev_status-0.1.0/troml_dev_status/analysis/__init__.py +0 -0
- troml_dev_status-0.1.0/troml_dev_status/analysis/bureaucracy.py +375 -0
- troml_dev_status-0.1.0/troml_dev_status/analysis/filesystem.py +174 -0
- troml_dev_status-0.1.0/troml_dev_status/analysis/git.py +58 -0
- troml_dev_status-0.1.0/troml_dev_status/analysis/pypi.py +32 -0
- troml_dev_status-0.1.0/troml_dev_status/checks.py +322 -0
- troml_dev_status-0.1.0/troml_dev_status/cli.py +63 -0
- troml_dev_status-0.1.0/troml_dev_status/engine.py +176 -0
- troml_dev_status-0.1.0/troml_dev_status/models.py +42 -0
- troml_dev_status-0.1.0/troml_dev_status/py.typed +0 -0
- troml_dev_status-0.1.0/troml_dev_status/reporting.py +83 -0
|
@@ -0,0 +1,208 @@
|
|
|
1
|
+
# Byte-compiled / optimized / DLL files
|
|
2
|
+
__pycache__/
|
|
3
|
+
*.py[codz]
|
|
4
|
+
*$py.class
|
|
5
|
+
|
|
6
|
+
# C extensions
|
|
7
|
+
*.so
|
|
8
|
+
|
|
9
|
+
# Distribution / packaging
|
|
10
|
+
.Python
|
|
11
|
+
build/
|
|
12
|
+
develop-eggs/
|
|
13
|
+
dist/
|
|
14
|
+
downloads/
|
|
15
|
+
eggs/
|
|
16
|
+
.eggs/
|
|
17
|
+
lib/
|
|
18
|
+
lib64/
|
|
19
|
+
parts/
|
|
20
|
+
sdist/
|
|
21
|
+
var/
|
|
22
|
+
wheels/
|
|
23
|
+
share/python-wheels/
|
|
24
|
+
*.egg-info/
|
|
25
|
+
.installed.cfg
|
|
26
|
+
*.egg
|
|
27
|
+
MANIFEST
|
|
28
|
+
|
|
29
|
+
# PyInstaller
|
|
30
|
+
# Usually these files are written by a python script from a template
|
|
31
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
32
|
+
*.manifest
|
|
33
|
+
*.spec
|
|
34
|
+
|
|
35
|
+
# Installer logs
|
|
36
|
+
pip-log.txt
|
|
37
|
+
pip-delete-this-directory.txt
|
|
38
|
+
|
|
39
|
+
# Unit test / coverage reports
|
|
40
|
+
htmlcov/
|
|
41
|
+
.tox/
|
|
42
|
+
.nox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
*.py.cover
|
|
50
|
+
.hypothesis/
|
|
51
|
+
.pytest_cache/
|
|
52
|
+
cover/
|
|
53
|
+
|
|
54
|
+
# Translations
|
|
55
|
+
*.mo
|
|
56
|
+
*.pot
|
|
57
|
+
|
|
58
|
+
# Django stuff:
|
|
59
|
+
*.log
|
|
60
|
+
local_settings.py
|
|
61
|
+
db.sqlite3
|
|
62
|
+
db.sqlite3-journal
|
|
63
|
+
|
|
64
|
+
# Flask stuff:
|
|
65
|
+
instance/
|
|
66
|
+
.webassets-cache
|
|
67
|
+
|
|
68
|
+
# Scrapy stuff:
|
|
69
|
+
.scrapy
|
|
70
|
+
|
|
71
|
+
# Sphinx documentation
|
|
72
|
+
docs/_build/
|
|
73
|
+
|
|
74
|
+
# PyBuilder
|
|
75
|
+
.pybuilder/
|
|
76
|
+
target/
|
|
77
|
+
|
|
78
|
+
# Jupyter Notebook
|
|
79
|
+
.ipynb_checkpoints
|
|
80
|
+
|
|
81
|
+
# IPython
|
|
82
|
+
profile_default/
|
|
83
|
+
ipython_config.py
|
|
84
|
+
|
|
85
|
+
# pyenv
|
|
86
|
+
# For a library or package, you might want to ignore these files since the code is
|
|
87
|
+
# intended to run in multiple environments; otherwise, check them in:
|
|
88
|
+
# .python-version
|
|
89
|
+
|
|
90
|
+
# pipenv
|
|
91
|
+
# According to pypa/pipenv#598, it is recommended to include Pipfile.lock in version control.
|
|
92
|
+
# However, in case of collaboration, if having platform-specific dependencies or dependencies
|
|
93
|
+
# having no cross-platform support, pipenv may install dependencies that don't work, or not
|
|
94
|
+
# install all needed dependencies.
|
|
95
|
+
#Pipfile.lock
|
|
96
|
+
|
|
97
|
+
# UV
|
|
98
|
+
# Similar to Pipfile.lock, it is generally recommended to include uv.lock in version control.
|
|
99
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
100
|
+
# commonly ignored for libraries.
|
|
101
|
+
#uv.lock
|
|
102
|
+
|
|
103
|
+
# poetry
|
|
104
|
+
# Similar to Pipfile.lock, it is generally recommended to include poetry.lock in version control.
|
|
105
|
+
# This is especially recommended for binary packages to ensure reproducibility, and is more
|
|
106
|
+
# commonly ignored for libraries.
|
|
107
|
+
# https://python-poetry.org/docs/basic-usage/#commit-your-poetrylock-file-to-version-control
|
|
108
|
+
#poetry.lock
|
|
109
|
+
#poetry.toml
|
|
110
|
+
|
|
111
|
+
# pdm
|
|
112
|
+
# Similar to Pipfile.lock, it is generally recommended to include pdm.lock in version control.
|
|
113
|
+
# pdm recommends including project-wide configuration in pdm.toml, but excluding .pdm-python.
|
|
114
|
+
# https://pdm-project.org/en/latest/usage/project/#working-with-version-control
|
|
115
|
+
#pdm.lock
|
|
116
|
+
#pdm.toml
|
|
117
|
+
.pdm-python
|
|
118
|
+
.pdm-build/
|
|
119
|
+
|
|
120
|
+
# pixi
|
|
121
|
+
# Similar to Pipfile.lock, it is generally recommended to include pixi.lock in version control.
|
|
122
|
+
#pixi.lock
|
|
123
|
+
# Pixi creates a virtual environment in the .pixi directory, just like venv module creates one
|
|
124
|
+
# in the .venv directory. It is recommended not to include this directory in version control.
|
|
125
|
+
.pixi
|
|
126
|
+
|
|
127
|
+
# PEP 582; used by e.g. github.com/David-OConnor/pyflow and github.com/pdm-project/pdm
|
|
128
|
+
__pypackages__/
|
|
129
|
+
|
|
130
|
+
# Celery stuff
|
|
131
|
+
celerybeat-schedule
|
|
132
|
+
celerybeat.pid
|
|
133
|
+
|
|
134
|
+
# SageMath parsed files
|
|
135
|
+
*.sage.py
|
|
136
|
+
|
|
137
|
+
# Environments
|
|
138
|
+
.env
|
|
139
|
+
.envrc
|
|
140
|
+
.venv
|
|
141
|
+
env/
|
|
142
|
+
venv/
|
|
143
|
+
ENV/
|
|
144
|
+
env.bak/
|
|
145
|
+
venv.bak/
|
|
146
|
+
|
|
147
|
+
# Spyder project settings
|
|
148
|
+
.spyderproject
|
|
149
|
+
.spyproject
|
|
150
|
+
|
|
151
|
+
# Rope project settings
|
|
152
|
+
.ropeproject
|
|
153
|
+
|
|
154
|
+
# mkdocs documentation
|
|
155
|
+
/site
|
|
156
|
+
|
|
157
|
+
# mypy
|
|
158
|
+
.mypy_cache/
|
|
159
|
+
.dmypy.json
|
|
160
|
+
dmypy.json
|
|
161
|
+
|
|
162
|
+
# Pyre type checker
|
|
163
|
+
.pyre/
|
|
164
|
+
|
|
165
|
+
# pytype static type analyzer
|
|
166
|
+
.pytype/
|
|
167
|
+
|
|
168
|
+
# Cython debug symbols
|
|
169
|
+
cython_debug/
|
|
170
|
+
|
|
171
|
+
# PyCharm
|
|
172
|
+
# JetBrains specific template is maintained in a separate JetBrains.gitignore that can
|
|
173
|
+
# be found at https://github.com/github/gitignore/blob/main/Global/JetBrains.gitignore
|
|
174
|
+
# and can be added to the global gitignore or merged into this file. For a more nuclear
|
|
175
|
+
# option (not recommended) you can uncomment the following to ignore the entire idea folder.
|
|
176
|
+
#.idea/
|
|
177
|
+
|
|
178
|
+
# Abstra
|
|
179
|
+
# Abstra is an AI-powered process automation framework.
|
|
180
|
+
# Ignore directories containing user credentials, local state, and settings.
|
|
181
|
+
# Learn more at https://abstra.io/docs
|
|
182
|
+
.abstra/
|
|
183
|
+
|
|
184
|
+
# Visual Studio Code
|
|
185
|
+
# Visual Studio Code specific template is maintained in a separate VisualStudioCode.gitignore
|
|
186
|
+
# that can be found at https://github.com/github/gitignore/blob/main/Global/VisualStudioCode.gitignore
|
|
187
|
+
# and can be added to the global gitignore or merged into this file. However, if you prefer,
|
|
188
|
+
# you could uncomment the following to ignore the entire vscode folder
|
|
189
|
+
# .vscode/
|
|
190
|
+
|
|
191
|
+
# Ruff stuff:
|
|
192
|
+
.ruff_cache/
|
|
193
|
+
|
|
194
|
+
# PyPI configuration file
|
|
195
|
+
.pypirc
|
|
196
|
+
|
|
197
|
+
# Cursor
|
|
198
|
+
# Cursor is an AI-powered code editor. `.cursorignore` specifies files/directories to
|
|
199
|
+
# exclude from AI features like autocomplete and code analysis. Recommended for sensitive data
|
|
200
|
+
# refer to https://docs.cursor.com/context/ignore-files
|
|
201
|
+
.cursorignore
|
|
202
|
+
.cursorindexingignore
|
|
203
|
+
|
|
204
|
+
# Marimo
|
|
205
|
+
marimo/_static/
|
|
206
|
+
marimo/_lsp/
|
|
207
|
+
__marimo__/
|
|
208
|
+
/.build_history/
|
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2025 Matthew Martin
|
|
4
|
+
|
|
5
|
+
Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
6
|
+
of this software and associated documentation files (the "Software"), to deal
|
|
7
|
+
in the Software without restriction, including without limitation the rights
|
|
8
|
+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
9
|
+
copies of the Software, and to permit persons to whom the Software is
|
|
10
|
+
furnished to do so, subject to the following conditions:
|
|
11
|
+
|
|
12
|
+
The above copyright notice and this permission notice shall be included in all
|
|
13
|
+
copies or substantial portions of the Software.
|
|
14
|
+
|
|
15
|
+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
16
|
+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
17
|
+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
18
|
+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
19
|
+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
20
|
+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
21
|
+
SOFTWARE.
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: troml-dev-status
|
|
3
|
+
Version: 0.1.0
|
|
4
|
+
Summary: Objectively infer PyPI Development Status classifiers from code and release artifacts.
|
|
5
|
+
Project-URL: Repository, https://github.com/matthewdeanmartin/troml_dev_status
|
|
6
|
+
Project-URL: Changelog, https://github.com/matthewdeanmartin/troml_dev_status/blob/main/CHANGELOG.md
|
|
7
|
+
Project-URL: homepage, https://github.com/matthewdeanmartin/troml_dev_status
|
|
8
|
+
Project-URL: issues, https://github.com/matthewdeanmartin/troml_dev_status/issues/
|
|
9
|
+
Author: Gemini, ChatGPT
|
|
10
|
+
Author-email: Matthew Dean Martin <matthewdeanmartin@gmail.com>
|
|
11
|
+
License-File: LICENSE
|
|
12
|
+
Classifier: Development Status :: 1 - Planning
|
|
13
|
+
Classifier: Environment :: Console
|
|
14
|
+
Classifier: Framework :: Pydantic
|
|
15
|
+
Classifier: Intended Audience :: Developers
|
|
16
|
+
Classifier: Programming Language :: Python
|
|
17
|
+
Classifier: Programming Language :: Python :: 3.9
|
|
18
|
+
Classifier: Programming Language :: Python :: 3.10
|
|
19
|
+
Classifier: Programming Language :: Python :: 3.11
|
|
20
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
22
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
23
|
+
Classifier: Programming Language :: Python :: 3.15
|
|
24
|
+
Classifier: Topic :: Software Development :: Quality Assurance
|
|
25
|
+
Requires-Python: >=3.9
|
|
26
|
+
Requires-Dist: httpx[http2]>=0.28.1
|
|
27
|
+
Requires-Dist: packaging>=25.0
|
|
28
|
+
Requires-Dist: pydantic>=2.11.9
|
|
29
|
+
Requires-Dist: pyyaml>=6.0.2
|
|
30
|
+
Requires-Dist: rich>=14.1.0
|
|
31
|
+
Requires-Dist: tomli; python_version < '3.11'
|
|
32
|
+
Description-Content-Type: text/markdown
|
|
33
|
+
|
|
34
|
+
# troml_dev_status
|
|
35
|
+
Project inspired by troml to suggest a Development Status based solely on objective criteria.
|
|
36
|
+
|
|
37
|
+
A tool to objectively infer PyPI "Development Status" classifiers from code and release artifacts, based on the
|
|
38
|
+
[draft PEP ∞](docs/PEP.md).
|
|
39
|
+
|
|
40
|
+
## Installation
|
|
41
|
+
|
|
42
|
+
```bash
|
|
43
|
+
pip install troml-dev-status
|
|
44
|
+
````
|
|
45
|
+
|
|
46
|
+
## Usage
|
|
47
|
+
|
|
48
|
+
Run the tool against a local Git repository that has a `pyproject.toml` file.
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
troml-dev-status /path/to/your/project
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
The tool will analyze the project's PyPI releases, Git history, and source code to produce an evidence-based "Development Status" classifier.
|
|
55
|
+
|
|
56
|
+
## Output
|
|
57
|
+
|
|
58
|
+
The tool outputs a human-readable summary table and a machine-readable JSON report.
|
|
59
|
+
|
|
60
|
+
### Example Human-Readable Output
|
|
61
|
+
|
|
62
|
+
```
|
|
63
|
+
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
64
|
+
┃ Check ID ┃ Status ┃ Evidence ┃
|
|
65
|
+
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
|
66
|
+
│ R1. Published at least once │ ✅ │ Found 15 releases on PyPI for 'my-package' │
|
|
67
|
+
│ R2. Wheel + sdist present │ ✅ │ Latest release 1.2.3 has wheel and sdist │
|
|
68
|
+
│ ... │ ... │ ... │
|
|
69
|
+
│ Q5. Type hints shipped │ ❌ │ 45.8% of 120 public symbols are annotated │
|
|
70
|
+
│ ... │ ... │ ... │
|
|
71
|
+
└──────────────────────────────────┴────────┴─────────────────────────────────────────────┘
|
|
72
|
+
Final Inferred Classifier: Development Status :: 4 - Beta
|
|
73
|
+
Reason: EPS=16/19; version 0.8.0 < 1.0.0; recent release (35 days ago)
|
|
74
|
+
```
|
|
75
|
+
|
|
76
|
+
### Example JSON Output
|
|
77
|
+
|
|
78
|
+
The tool also prints a detailed JSON object containing the results of every check.
|
|
79
|
+
|
|
80
|
+
```json
|
|
81
|
+
{
|
|
82
|
+
"inferred_classifier": "Development Status :: 4 - Beta",
|
|
83
|
+
"evaluated_at": "2025-09-14T20:00:00.123456Z",
|
|
84
|
+
"checks": {
|
|
85
|
+
"R1": {
|
|
86
|
+
"passed": true,
|
|
87
|
+
"evidence": "Found 15 releases on PyPI for 'my-package'"
|
|
88
|
+
},
|
|
89
|
+
"...": {}
|
|
90
|
+
},
|
|
91
|
+
"metrics": {
|
|
92
|
+
"eps_score": 16,
|
|
93
|
+
"eps_total": 19
|
|
94
|
+
}
|
|
95
|
+
}
|
|
96
|
+
```
|
|
97
|
+
|
|
98
|
+
## Project Health
|
|
99
|
+
|
|
100
|
+
| Metric | Status |
|
|
101
|
+
|----------------|--------|
|
|
102
|
+
| Coverage | [](https://codecov.io/gh/matthewdeanmartin/troml_dev_status) |
|
|
103
|
+
| Docs | [](https://troml_dev_status.readthedocs.io/en/latest/) |
|
|
104
|
+
| PyPI | [](https://pypi.org/project/troml_dev_status/) |
|
|
105
|
+
| Downloads | [](https://pepy.tech/project/troml_dev_status) |
|
|
106
|
+
| License | [](https://github.com/matthewdeanmartin/troml_dev_status/blob/main/LICENSE.md) |
|
|
107
|
+
| Last Commit |  |
|
|
108
|
+
|
|
109
|
+
## Libray info pages
|
|
110
|
+
- [troml_dev_status](https://libraries.io/pypi/troml_dev_status)
|
|
111
|
+
|
|
112
|
+
## Snyk Security Pages
|
|
113
|
+
|
|
114
|
+
- [troml_dev_status](https://security.snyk.io/package/pip/troml_dev_status)
|
|
@@ -0,0 +1,81 @@
|
|
|
1
|
+
# troml_dev_status
|
|
2
|
+
Project inspired by troml to suggest a Development Status based solely on objective criteria.
|
|
3
|
+
|
|
4
|
+
A tool to objectively infer PyPI "Development Status" classifiers from code and release artifacts, based on the
|
|
5
|
+
[draft PEP ∞](docs/PEP.md).
|
|
6
|
+
|
|
7
|
+
## Installation
|
|
8
|
+
|
|
9
|
+
```bash
|
|
10
|
+
pip install troml-dev-status
|
|
11
|
+
````
|
|
12
|
+
|
|
13
|
+
## Usage
|
|
14
|
+
|
|
15
|
+
Run the tool against a local Git repository that has a `pyproject.toml` file.
|
|
16
|
+
|
|
17
|
+
```bash
|
|
18
|
+
troml-dev-status /path/to/your/project
|
|
19
|
+
```
|
|
20
|
+
|
|
21
|
+
The tool will analyze the project's PyPI releases, Git history, and source code to produce an evidence-based "Development Status" classifier.
|
|
22
|
+
|
|
23
|
+
## Output
|
|
24
|
+
|
|
25
|
+
The tool outputs a human-readable summary table and a machine-readable JSON report.
|
|
26
|
+
|
|
27
|
+
### Example Human-Readable Output
|
|
28
|
+
|
|
29
|
+
```
|
|
30
|
+
┏━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┳━━━━━━━━┳━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┓
|
|
31
|
+
┃ Check ID ┃ Status ┃ Evidence ┃
|
|
32
|
+
┡━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━╇━━━━━━━━╇━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━┩
|
|
33
|
+
│ R1. Published at least once │ ✅ │ Found 15 releases on PyPI for 'my-package' │
|
|
34
|
+
│ R2. Wheel + sdist present │ ✅ │ Latest release 1.2.3 has wheel and sdist │
|
|
35
|
+
│ ... │ ... │ ... │
|
|
36
|
+
│ Q5. Type hints shipped │ ❌ │ 45.8% of 120 public symbols are annotated │
|
|
37
|
+
│ ... │ ... │ ... │
|
|
38
|
+
└──────────────────────────────────┴────────┴─────────────────────────────────────────────┘
|
|
39
|
+
Final Inferred Classifier: Development Status :: 4 - Beta
|
|
40
|
+
Reason: EPS=16/19; version 0.8.0 < 1.0.0; recent release (35 days ago)
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
### Example JSON Output
|
|
44
|
+
|
|
45
|
+
The tool also prints a detailed JSON object containing the results of every check.
|
|
46
|
+
|
|
47
|
+
```json
|
|
48
|
+
{
|
|
49
|
+
"inferred_classifier": "Development Status :: 4 - Beta",
|
|
50
|
+
"evaluated_at": "2025-09-14T20:00:00.123456Z",
|
|
51
|
+
"checks": {
|
|
52
|
+
"R1": {
|
|
53
|
+
"passed": true,
|
|
54
|
+
"evidence": "Found 15 releases on PyPI for 'my-package'"
|
|
55
|
+
},
|
|
56
|
+
"...": {}
|
|
57
|
+
},
|
|
58
|
+
"metrics": {
|
|
59
|
+
"eps_score": 16,
|
|
60
|
+
"eps_total": 19
|
|
61
|
+
}
|
|
62
|
+
}
|
|
63
|
+
```
|
|
64
|
+
|
|
65
|
+
## Project Health
|
|
66
|
+
|
|
67
|
+
| Metric | Status |
|
|
68
|
+
|----------------|--------|
|
|
69
|
+
| Coverage | [](https://codecov.io/gh/matthewdeanmartin/troml_dev_status) |
|
|
70
|
+
| Docs | [](https://troml_dev_status.readthedocs.io/en/latest/) |
|
|
71
|
+
| PyPI | [](https://pypi.org/project/troml_dev_status/) |
|
|
72
|
+
| Downloads | [](https://pepy.tech/project/troml_dev_status) |
|
|
73
|
+
| License | [](https://github.com/matthewdeanmartin/troml_dev_status/blob/main/LICENSE.md) |
|
|
74
|
+
| Last Commit |  |
|
|
75
|
+
|
|
76
|
+
## Libray info pages
|
|
77
|
+
- [troml_dev_status](https://libraries.io/pypi/troml_dev_status)
|
|
78
|
+
|
|
79
|
+
## Snyk Security Pages
|
|
80
|
+
|
|
81
|
+
- [troml_dev_status](https://security.snyk.io/package/pip/troml_dev_status)
|
|
@@ -0,0 +1,128 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name = "troml-dev-status"
|
|
3
|
+
version = "0.1.0"
|
|
4
|
+
description = "Objectively infer PyPI Development Status classifiers from code and release artifacts."
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "Matthew Dean Martin", email = "matthewdeanmartin@gmail.com" },
|
|
8
|
+
{ name = "Gemini" },
|
|
9
|
+
{ name = "ChatGPT" },
|
|
10
|
+
]
|
|
11
|
+
requires-python = ">=3.9"
|
|
12
|
+
classifiers = [
|
|
13
|
+
"Development Status :: 1 - Planning",
|
|
14
|
+
"Environment :: Console",
|
|
15
|
+
"Framework :: Pydantic",
|
|
16
|
+
"Intended Audience :: Developers",
|
|
17
|
+
"Programming Language :: Python",
|
|
18
|
+
"Programming Language :: Python :: 3.9",
|
|
19
|
+
"Programming Language :: Python :: 3.10",
|
|
20
|
+
"Programming Language :: Python :: 3.11",
|
|
21
|
+
"Programming Language :: Python :: 3.12",
|
|
22
|
+
"Programming Language :: Python :: 3.13",
|
|
23
|
+
"Programming Language :: Python :: 3.14",
|
|
24
|
+
"Programming Language :: Python :: 3.15",
|
|
25
|
+
"Topic :: Software Development :: Quality Assurance",
|
|
26
|
+
]
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
dependencies = [
|
|
30
|
+
"rich>=14.1.0",
|
|
31
|
+
"pydantic>=2.11.9",
|
|
32
|
+
"httpx[http2]>=0.28.1",
|
|
33
|
+
"pyyaml>=6.0.2",
|
|
34
|
+
"packaging>=25.0",
|
|
35
|
+
"tomli; python_version < '3.11'"
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[dependency-groups]
|
|
39
|
+
dev = [
|
|
40
|
+
"types-PyYAML",
|
|
41
|
+
"troml;python_version>='3.11'",
|
|
42
|
+
"cli-tool-audit",
|
|
43
|
+
"git2md; python_version >= '3.10'",
|
|
44
|
+
"pyclean; python_version >= '3.12'",
|
|
45
|
+
"strip-docs>=1.0; python_version >= '3.12'",
|
|
46
|
+
"gha-update; python_version >= '3.12'",
|
|
47
|
+
"mkdocstrings[python]",
|
|
48
|
+
"mkdocs; python_version >= '3.12'",
|
|
49
|
+
"mdformat",
|
|
50
|
+
# plugin finder
|
|
51
|
+
"packaging; python_version >= '3.8'",
|
|
52
|
+
# mpy
|
|
53
|
+
"types-retry",
|
|
54
|
+
"types-Markdown",
|
|
55
|
+
"mypy; python_version >= '3.8'",
|
|
56
|
+
"types-toml; python_version >= '3.8'",
|
|
57
|
+
# reports
|
|
58
|
+
|
|
59
|
+
# build
|
|
60
|
+
"vermin; python_version >= '3.8'",
|
|
61
|
+
"metametameta>=0.1.3; python_version >= '3.9'",
|
|
62
|
+
"hatchling; python_version >= '3.8'",
|
|
63
|
+
"ruff>=0.12.0; python_version >= '3.8'",
|
|
64
|
+
"pylint; python_version >= '3.8'",
|
|
65
|
+
"bandit; python_version >= '3.8'",
|
|
66
|
+
"pre-commit; python_version >= '3.8'",
|
|
67
|
+
# testing tools
|
|
68
|
+
"pytest; python_version >= '3.8'",
|
|
69
|
+
"pytest-cov; python_version >= '3.8'",
|
|
70
|
+
"pytest-xdist>=3.5.0; python_version >= '3.8'",
|
|
71
|
+
"pytest-randomly>=3.15.0; python_version >= '3.8'",
|
|
72
|
+
"pytest-sugar>=0.9.7; python_version >= '3.8'",
|
|
73
|
+
"pytest-mock; python_version >= '3.8'",
|
|
74
|
+
# "pytest-unused-whichfixtures; python_version >= '3.10'",
|
|
75
|
+
"hypothesis[cli]; python_version >= '3.8'",
|
|
76
|
+
"detect-test-pollution",
|
|
77
|
+
"pytest-timeout>=2.4.0",
|
|
78
|
+
# docs
|
|
79
|
+
"interrogate>=1.5.0; python_version >= '3.8'",
|
|
80
|
+
"pydoctest==0.2.1; python_version >= '3.8'",
|
|
81
|
+
"pdoc3>=0.5.0; python_version >= '3.8'",
|
|
82
|
+
"mdformat>=0.5.0; python_version >= '3.8'",
|
|
83
|
+
"linkcheckmd>=1.4.0; python_version >= '3.8'",
|
|
84
|
+
"codespell>=2.2.6; python_version >= '3.8'",
|
|
85
|
+
"pyenchant>=3.2.2; python_version >= '3.8'",
|
|
86
|
+
]
|
|
87
|
+
|
|
88
|
+
[project.urls]
|
|
89
|
+
Repository = "https://github.com/matthewdeanmartin/troml_dev_status"
|
|
90
|
+
# Documentation = "https://bitrab.readthedocs.io/en/latest/"
|
|
91
|
+
Changelog = "https://github.com/matthewdeanmartin/troml_dev_status/blob/main/CHANGELOG.md"
|
|
92
|
+
|
|
93
|
+
homepage = "https://github.com/matthewdeanmartin/troml_dev_status"
|
|
94
|
+
issues = "https://github.com/matthewdeanmartin/troml_dev_status/issues/"
|
|
95
|
+
|
|
96
|
+
|
|
97
|
+
[project.scripts]
|
|
98
|
+
troml-dev-status = "troml_dev_status.cli:main"
|
|
99
|
+
troml_dev_status = "troml_dev_status.cli:main"
|
|
100
|
+
|
|
101
|
+
[build-system]
|
|
102
|
+
requires = ["hatchling"]
|
|
103
|
+
build-backend = "hatchling.build"
|
|
104
|
+
|
|
105
|
+
[tool.hatch.build.targets.sdist]
|
|
106
|
+
include = [
|
|
107
|
+
"troml_dev_status/**/*.py",
|
|
108
|
+
"troml_dev_status/schemas/*",
|
|
109
|
+
"troml_dev_status/py.typed",
|
|
110
|
+
"/README.md", "LICENSE",
|
|
111
|
+
]
|
|
112
|
+
|
|
113
|
+
exclude = [
|
|
114
|
+
|
|
115
|
+
]
|
|
116
|
+
|
|
117
|
+
[tool.hatch.build.targets.wheel]
|
|
118
|
+
packages = ["troml_dev_status"]
|
|
119
|
+
include = [
|
|
120
|
+
"troml_dev_status/**/*.py",
|
|
121
|
+
"troml_dev_status/schemas/*",
|
|
122
|
+
"troml_dev_status/py.typed",
|
|
123
|
+
"/README.md", "LICENSE",
|
|
124
|
+
]
|
|
125
|
+
|
|
126
|
+
[tool.troml-dev-status]
|
|
127
|
+
mode = "application" # or "library"
|
|
128
|
+
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
"""Metadata for troml_dev_status."""
|
|
2
|
+
|
|
3
|
+
__all__ = [
|
|
4
|
+
"__title__",
|
|
5
|
+
"__version__",
|
|
6
|
+
"__description__",
|
|
7
|
+
"__readme__",
|
|
8
|
+
"__requires_python__",
|
|
9
|
+
"__status__",
|
|
10
|
+
]
|
|
11
|
+
|
|
12
|
+
__title__ = "troml-dev-status"
|
|
13
|
+
__version__ = "0.1.0"
|
|
14
|
+
__description__ = "Objectively infer PyPI Development Status classifiers from code and release artifacts."
|
|
15
|
+
__readme__ = "README.md"
|
|
16
|
+
__requires_python__ = ">=3.9"
|
|
17
|
+
__status__ = "1 - Planning"
|
|
File without changes
|
|
File without changes
|