Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions .eggs/README.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
This directory contains eggs that were downloaded by setuptools to build, test, and run plug-ins.

This directory caches those eggs to prevent repeated downloads.

However, it is safe to delete this directory.

17 changes: 17 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/EGG-INFO/LICENSE
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.
164 changes: 164 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/EGG-INFO/PKG-INFO
Original file line number Diff line number Diff line change
@@ -0,0 +1,164 @@
Metadata-Version: 2.1
Name: setuptools-scm
Version: 8.0.4
Summary: the blessed package to manage your versions by scm tags
Author-email: Ronny Pfannschmidt <opensource@ronnypfannschmidt.de>
License: Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in
all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
THE SOFTWARE.

Project-URL: documentation, https://setuptools-scm.readthedocs.io/
Project-URL: repository, https://github.com/pypa/setuptools_scm/
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.8
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Version Control
Classifier: Topic :: System :: Software Distribution
Classifier: Topic :: Utilities
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: packaging >=20
Requires-Dist: setuptools
Requires-Dist: typing-extensions
Requires-Dist: tomli >=1 ; python_version < "3.11"
Provides-Extra: docs
Requires-Dist: entangled-cli[rich] ; extra == 'docs'
Requires-Dist: mkdocs ; extra == 'docs'
Requires-Dist: mkdocs-entangled-plugin ; extra == 'docs'
Requires-Dist: mkdocs-material ; extra == 'docs'
Requires-Dist: mkdocstrings[python] ; extra == 'docs'
Requires-Dist: pygments ; extra == 'docs'
Provides-Extra: rich
Requires-Dist: rich ; extra == 'rich'
Provides-Extra: test
Requires-Dist: build ; extra == 'test'
Requires-Dist: pytest ; extra == 'test'
Requires-Dist: rich ; extra == 'test'
Requires-Dist: wheel ; extra == 'test'
Provides-Extra: toml

# setuptools_scm
[![github ci](https://github.com/pypa/setuptools_scm/workflows/python%20tests+artifacts+release/badge.svg)](https://github.com/pypa/setuptools_scm/actions)
[![Documentation Status](https://readthedocs.org/projects/setuptools-scm/badge/?version=latest)](https://setuptools-scm.readthedocs.io/en/latest/?badge=latest)
[![tidelift](https://tidelift.com/badges/package/pypi/setuptools-scm) ](https://tidelift.com/subscription/pkg/pypi-setuptools-scm?utm_source=pypi-setuptools-scm&utm_medium=readme)

## about

[setuptools-scm] extracts Python package versions from `git` or
`hg` metadata instead of declaring them as the version argument
or in an SCM managed file.

Additionally, [setuptools-scm] provides setuptools
with a list of files that are managed by the SCM <br/>
(i.e. it automatically adds **all of** the SCM-managed files to the sdist).<br/>
Unwanted files must be excluded via `MANIFEST.in`.


## `pyproject.toml` usage

The preferred way to configure [setuptools-scm] is to author
settings in a `tool.setuptools_scm` section of `pyproject.toml`.

This feature requires setuptools 60 or later.
First, ensure that [setuptools-scm] is present during the project's
build step by specifying it as one of the build requirements.

```toml
[build-system]
requires = [
"setuptools>=60",
"setuptools-scm>=8.0"]
```

That will be sufficient to require [setuptools-scm] for projects
that support [PEP 518] like [pip] and [build].

[pip]: https://pypi.org/project/pip
[build]: https://pypi.org/project/build
[PEP 518]: https://peps.python.org/pep-0518/


To enable version inference, you need to set the version
dynamically in the `project` section of `pyproject.toml`:

```toml title="pyproject.toml"
[project]
# version = "0.0.1" # Remove any existing version parameter.
dynamic = ["version"]
[tool.setuptools_scm]
```

Additionally, a version file can be written by specifying:

```toml title="pyproject.toml"
[tool.setuptools_scm]
version_file = "pkg/_version.py"
```

Where `pkg` is the name of your package.

If you need to confirm which version string is being generated or debug the configuration,
you can install [setuptools-scm] directly in your working environment and run:

```console
$ python -m setuptools_scm
# To explore other options, try:
$ python -m setuptools_scm --help
```

For further configuration see the [documentation].

[setuptools-scm]: https://github.com/pypa/setuptools_scm
[documentation]: https://setuptools-scm.readthedocs.io/


## Interaction with Enterprise Distributions

Some enterprise distributions like RHEL7
ship rather old setuptools versions.

In those cases its typically possible to build by using an sdist against `setuptools_scm<2.0`.
As those old setuptools versions lack sensible types for versions,
modern [setuptools-scm] is unable to support them sensibly.

It's strongly recommended to build a wheel artifact using modern Python and setuptools,
then installing the artifact instead of trying to run against old setuptools versions.


## Code of Conduct


Everyone interacting in the [setuptools-scm] project's codebases, issue
trackers, chat rooms, and mailing lists is expected to follow the
[PSF Code of Conduct].

[PSF Code of Conduct]: https://github.com/pypa/.github/blob/main/CODE_OF_CONDUCT.md


## Security Contact

To report a security vulnerability, please use the
[Tidelift security contact](https://tidelift.com/security).
Tidelift will coordinate the fix and disclosure.
35 changes: 35 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/EGG-INFO/RECORD
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
setuptools_scm/.git_archival.txt,sha256=7hhQtCsXxyEnQcc8hjZYFcJAwBDbwynYLopeiYEn6m0,125
setuptools_scm/__init__.py,sha256=bM4TUtVIcPgNzNkmKN6N-wXs9A06cJfPHVYgIHuY4r4,861
setuptools_scm/__main__.py,sha256=PUkvI9W-hylvxv5sd1sosqWXEliN3d30x7BIKVEAQaQ,98
setuptools_scm/_cli.py,sha256=gsBkEmv7SKu8nZBYpXerzCZ1zZg7yEAQHMrEVbJ_q5M,2890
setuptools_scm/_config.py,sha256=29pxSz30qLob5F5RX9v_0tahovFw5aGx5A3cX1a6foM,4964
setuptools_scm/_entrypoints.py,sha256=zwJOqeb7sjC9vJtiANojUov40Xe8mpdZNhxWDCdbBsU,3793
setuptools_scm/_get_version_impl.py,sha256=FhHrF5K4Nlgt9c9UsULQzUsqj0PzGwx6H6ZBQjYUWcw,5942
setuptools_scm/_log.py,sha256=5GQzzFBBoldPlBSEdzdWHJvq-6O0x74WkYkCVkTghTY,2135
setuptools_scm/_modify_version.py,sha256=3dGCx9wzIeRuxZkV69_tw7TqCXAfFyi1BpIQpyPItF8,1747
setuptools_scm/_overrides.py,sha256=iA3XDa-RYKKGLgYYb3hkmmh4YHovhkBF404AmZ_8hxE,1654
setuptools_scm/_run_cmd.py,sha256=jcP20Qp4izQMLU3AI5GtbjfnEoLt3LLFrFigSm0UUSs,5912
setuptools_scm/_types.py,sha256=WvfAIDbCOr2_IQPztoLEO-Qhsvhz7JGk8HaEpqTp1bM,604
setuptools_scm/_version_cls.py,sha256=G5d8sJXPmHRrfrTtmYWt2RVVnGlp3xvnE183EWVlOOc,2925
setuptools_scm/discover.py,sha256=TGlKeP-uLSWmBLIGL6es4etKfbvOUdjDjcxgZxYrLxk,2026
setuptools_scm/fallbacks.py,sha256=59W02TAzq7iIZ1uSRSZH7ELwY958KU4yNh7v5-0FCEs,1447
setuptools_scm/git.py,sha256=DO8Dk6rlMTKR143AgdCm6c2WCEp6OiOn5UAul6uB5fM,10365
setuptools_scm/hg.py,sha256=LracAVnGGluu4xk28JtgpZxc5wR9s3CMGIaX40Eyhng,6190
setuptools_scm/hg_git.py,sha256=CCZm1ErjeS0sPkKC2COjT_d4omZK21FrTiIg4GwH5LA,4545
setuptools_scm/integration.py,sha256=a0c6-lIBSzKgNJybvE76jkKL8sdJuHtkvAx3IwTPkK0,805
setuptools_scm/scm_workdir.py,sha256=oreoRhJfvhhxVGIhDPWH8-dg9umsmZM0sV2oRIzGXc8,327
setuptools_scm/version.py,sha256=klVnCWFwY7OlTNPvSum3VhTSlBBcMwDpIcb7n_Ndprw,13835
setuptools_scm/_file_finders/__init__.py,sha256=Gc7CcjwzlC7jXstfQysYl5wv-x8RalTAnzieM6mSAVU,3686
setuptools_scm/_file_finders/git.py,sha256=XpYe2h80g_nOFxZR3E2gwma_geOT4CE8oP2T33dQzPI,4179
setuptools_scm/_file_finders/hg.py,sha256=V6T9s91xigTtn1TRlwqnrgZV4eHuqixovF0CwMI3lXQ,2256
setuptools_scm/_integration/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
setuptools_scm/_integration/dump_version.py,sha256=ixcET9z3-oNdx6mM-yYbV9xktHsdPfCmHCCKGRA0_eo,2584
setuptools_scm/_integration/pyproject_reading.py,sha256=6PEog4x2TofynEnN4rkjcmfIMys49nO4TtNdt6wLLzg,2589
setuptools_scm/_integration/setuptools.py,sha256=kdM2C4jtAchJQCQnxWj_x1FoeD1B5SO9OF6to2oxr4c,3420
setuptools_scm/_integration/toml.py,sha256=P3MBO01jBeaEYeaqR_vfDiaDaytOhLvYmzSISoJ7EUg,1379
setuptools_scm-8.0.4.dist-info/LICENSE,sha256=iYB6zyMJvShfAzQE7nhYFgLzzZuBmhasLw5fYP9KRz4,1023
setuptools_scm-8.0.4.dist-info/METADATA,sha256=XktL5dowfcRZfNPKaf4lPx83_gRFXVLZwqhFLxC17k8,6403
setuptools_scm-8.0.4.dist-info/WHEEL,sha256=yQN5g4mg4AybRjkgi-9yy4iQEFibGQmlz78Pik5Or-A,92
setuptools_scm-8.0.4.dist-info/entry_points.txt,sha256=TxfQoR1oJCfa_OWTNvozyEymcj-Avnq8kE3RLO7cN44,1725
setuptools_scm-8.0.4.dist-info/top_level.txt,sha256=kiu-91q3_rJLUoc2wl8_lC4cIlpgtgdD_4NaChF4hOA,15
setuptools_scm-8.0.4.dist-info/RECORD,,
5 changes: 5 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/EGG-INFO/WHEEL
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
Wheel-Version: 1.0
Generator: bdist_wheel (0.41.2)
Root-Is-Purelib: true
Tag: py3-none-any

41 changes: 41 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/EGG-INFO/entry_points.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,41 @@
[distutils.setup_keywords]
use_scm_version = setuptools_scm._integration.setuptools:version_keyword

[setuptools.file_finders]
setuptools_scm = setuptools_scm._file_finders:find_files

[setuptools.finalize_distribution_options]
setuptools_scm = setuptools_scm._integration.setuptools:infer_version

[setuptools_scm.files_command]
.git = setuptools_scm._file_finders.git:git_find_files
.hg = setuptools_scm._file_finders.hg:hg_find_files

[setuptools_scm.files_command_fallback]
.git_archival.txt = setuptools_scm._file_finders.git:git_archive_find_files
.hg_archival.txt = setuptools_scm._file_finders.hg:hg_archive_find_files

[setuptools_scm.local_scheme]
dirty-tag = setuptools_scm.version:get_local_dirty_tag
no-local-version = setuptools_scm.version:get_no_local_node
node-and-date = setuptools_scm.version:get_local_node_and_date
node-and-timestamp = setuptools_scm.version:get_local_node_and_timestamp

[setuptools_scm.parse_scm]
.git = setuptools_scm.git:parse
.hg = setuptools_scm.hg:parse

[setuptools_scm.parse_scm_fallback]
.git_archival.txt = setuptools_scm.git:parse_archival
.hg_archival.txt = setuptools_scm.hg:parse_archival
PKG-INFO = setuptools_scm.fallbacks:parse_pkginfo
pyproject.toml = setuptools_scm.fallbacks:fallback_version
setup.py = setuptools_scm.fallbacks:fallback_version

[setuptools_scm.version_scheme]
calver-by-date = setuptools_scm.version:calver_by_date
guess-next-dev = setuptools_scm.version:guess_next_dev_version
no-guess-dev = setuptools_scm.version:no_guess_dev_version
post-release = setuptools_scm.version:postrelease_version
python-simplified-semver = setuptools_scm.version:simplified_semver_version
release-branch-semver = setuptools_scm.version:release_branch_semver_version
22 changes: 22 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/EGG-INFO/requires.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
packaging>=20
setuptools
typing-extensions

[docs]
entangled-cli[rich]
mkdocs
mkdocs-entangled-plugin
mkdocs-material
mkdocstrings[python]
pygments

[rich]
rich

[test]
build
pytest
rich
wheel

[toml]
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
setuptools_scm
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
node: $Format:%H$
node-date: $Format:%cI$
describe-name: $Format:%(describe:tags=true,match=*[0-9]*)$
ref-names: $Format:%D$
30 changes: 30 additions & 0 deletions .eggs/setuptools_scm-8.0.4-py3.11.egg/setuptools_scm/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
"""
:copyright: 2010-2023 by Ronny Pfannschmidt
:license: MIT
"""
from __future__ import annotations

from ._config import Configuration
from ._config import DEFAULT_LOCAL_SCHEME # soft deprecated
from ._config import DEFAULT_VERSION_SCHEME # soft deprecated
from ._get_version_impl import _get_version # soft deprecated
from ._get_version_impl import get_version # soft deprecated
from ._integration.dump_version import dump_version # soft deprecated
from ._version_cls import NonNormalizedVersion
from ._version_cls import Version
from .version import ScmVersion


# Public API
__all__ = [
# soft deprecated imports, left for backward compatibility
"get_version",
"_get_version",
"dump_version",
"DEFAULT_VERSION_SCHEME",
"DEFAULT_LOCAL_SCHEME",
"Configuration",
"Version",
"ScmVersion",
"NonNormalizedVersion",
]
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
from __future__ import annotations

from ._cli import main

if __name__ == "__main__":
main()
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Loading