wlgen 1.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.
- wlgen-1.2/.github/workflows/build.yml +37 -0
- wlgen-1.2/.gitignore +103 -0
- wlgen-1.2/LICENSE.txt +21 -0
- wlgen-1.2/PKG-INFO +48 -0
- wlgen-1.2/README.md +37 -0
- wlgen-1.2/pyproject.toml +20 -0
- wlgen-1.2/setup.cfg +2 -0
- wlgen-1.2/setup.py +18 -0
- wlgen-1.2/src/wlgen/__init__.py +54 -0
- wlgen-1.2/src/wlgen/tests/__init__.py +38 -0
- wlgen-1.2/src/wlgen/tests/files/sample_mixed_dos +36 -0
- wlgen-1.2/src/wlgen/tests/files/sample_mixed_unix +36 -0
- wlgen-1.2/src/wlgen/tests/files/tmp +36 -0
- wlgen-1.2/uv.lock +51 -0
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
name: Build
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
branches:
|
|
6
|
+
- main
|
|
7
|
+
pull_request:
|
|
8
|
+
|
|
9
|
+
jobs:
|
|
10
|
+
build:
|
|
11
|
+
name: python
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
environment: pypi
|
|
14
|
+
permissions:
|
|
15
|
+
id-token: write
|
|
16
|
+
steps:
|
|
17
|
+
- uses: actions/checkout@v4
|
|
18
|
+
- name: Install uv
|
|
19
|
+
uses: astral-sh/setup-uv@v4
|
|
20
|
+
with:
|
|
21
|
+
enable-cache: true
|
|
22
|
+
cache-dependency-glob: "uv.lock"
|
|
23
|
+
- name: "Set up Python"
|
|
24
|
+
uses: actions/setup-python@v5
|
|
25
|
+
with:
|
|
26
|
+
python-version-file: "pyproject.toml"
|
|
27
|
+
- name: Install the project
|
|
28
|
+
run: uv sync --all-extras --dev
|
|
29
|
+
- name: Run ruff
|
|
30
|
+
run: uv run ruff check
|
|
31
|
+
- name: Run tests
|
|
32
|
+
run: uv run src/wlgen/tests/__init__.py
|
|
33
|
+
- name: Build
|
|
34
|
+
run: uv build
|
|
35
|
+
- name: Publish package distributions to PyPI
|
|
36
|
+
if: ${{ github.event_name == 'push' }}
|
|
37
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
wlgen-1.2/.gitignore
ADDED
|
@@ -0,0 +1,103 @@
|
|
|
1
|
+
# VSCode settings
|
|
2
|
+
.vscode/
|
|
3
|
+
# Byte-compiled / optimized / DLL files
|
|
4
|
+
__pycache__/
|
|
5
|
+
*.py[cod]
|
|
6
|
+
*$py.class
|
|
7
|
+
|
|
8
|
+
# C extensions
|
|
9
|
+
*.so
|
|
10
|
+
|
|
11
|
+
# Distribution / packaging
|
|
12
|
+
.Python
|
|
13
|
+
env/
|
|
14
|
+
build/
|
|
15
|
+
develop-eggs/
|
|
16
|
+
dist/
|
|
17
|
+
downloads/
|
|
18
|
+
eggs/
|
|
19
|
+
.eggs/
|
|
20
|
+
lib/
|
|
21
|
+
lib64/
|
|
22
|
+
parts/
|
|
23
|
+
sdist/
|
|
24
|
+
var/
|
|
25
|
+
wheels/
|
|
26
|
+
*.egg-info/
|
|
27
|
+
.installed.cfg
|
|
28
|
+
*.egg
|
|
29
|
+
|
|
30
|
+
# PyInstaller
|
|
31
|
+
# Usually these files are written by a python script from a template
|
|
32
|
+
# before PyInstaller builds the exe, so as to inject date/other infos into it.
|
|
33
|
+
*.manifest
|
|
34
|
+
*.spec
|
|
35
|
+
|
|
36
|
+
# Installer logs
|
|
37
|
+
pip-log.txt
|
|
38
|
+
pip-delete-this-directory.txt
|
|
39
|
+
|
|
40
|
+
# Unit test / coverage reports
|
|
41
|
+
htmlcov/
|
|
42
|
+
.tox/
|
|
43
|
+
.coverage
|
|
44
|
+
.coverage.*
|
|
45
|
+
.cache
|
|
46
|
+
nosetests.xml
|
|
47
|
+
coverage.xml
|
|
48
|
+
*.cover
|
|
49
|
+
.hypothesis/
|
|
50
|
+
|
|
51
|
+
# Translations
|
|
52
|
+
*.mo
|
|
53
|
+
*.pot
|
|
54
|
+
|
|
55
|
+
# Django stuff:
|
|
56
|
+
*.log
|
|
57
|
+
local_settings.py
|
|
58
|
+
|
|
59
|
+
# Flask stuff:
|
|
60
|
+
instance/
|
|
61
|
+
.webassets-cache
|
|
62
|
+
|
|
63
|
+
# Scrapy stuff:
|
|
64
|
+
.scrapy
|
|
65
|
+
|
|
66
|
+
# Sphinx documentation
|
|
67
|
+
docs/_build/
|
|
68
|
+
|
|
69
|
+
# PyBuilder
|
|
70
|
+
target/
|
|
71
|
+
|
|
72
|
+
# Jupyter Notebook
|
|
73
|
+
.ipynb_checkpoints
|
|
74
|
+
|
|
75
|
+
# pyenv
|
|
76
|
+
.python-version
|
|
77
|
+
|
|
78
|
+
# celery beat schedule file
|
|
79
|
+
celerybeat-schedule
|
|
80
|
+
|
|
81
|
+
# SageMath parsed files
|
|
82
|
+
*.sage.py
|
|
83
|
+
|
|
84
|
+
# dotenv
|
|
85
|
+
.env
|
|
86
|
+
|
|
87
|
+
# virtualenv
|
|
88
|
+
.venv
|
|
89
|
+
venv/
|
|
90
|
+
ENV/
|
|
91
|
+
|
|
92
|
+
# Spyder project settings
|
|
93
|
+
.spyderproject
|
|
94
|
+
.spyproject
|
|
95
|
+
|
|
96
|
+
# Rope project settings
|
|
97
|
+
.ropeproject
|
|
98
|
+
|
|
99
|
+
# mkdocs documentation
|
|
100
|
+
/site
|
|
101
|
+
|
|
102
|
+
# mypy
|
|
103
|
+
.mypy_cache/
|
wlgen-1.2/LICENSE.txt
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
MIT License
|
|
2
|
+
|
|
3
|
+
Copyright (c) 2018 Robert Weyres
|
|
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.
|
wlgen-1.2/PKG-INFO
ADDED
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
Metadata-Version: 2.4
|
|
2
|
+
Name: wlgen
|
|
3
|
+
Version: 1.2
|
|
4
|
+
Summary: A recursive wordlist generator written in python
|
|
5
|
+
Author-email: tehw0lf <tehwolf@protonmail.com>
|
|
6
|
+
License-File: LICENSE.txt
|
|
7
|
+
Requires-Python: >=3.12
|
|
8
|
+
Requires-Dist: ruff>=0.8.4
|
|
9
|
+
Requires-Dist: setuptools>=75.6.0
|
|
10
|
+
Description-Content-Type: text/markdown
|
|
11
|
+
|
|
12
|
+
[](https://app.codacy.com/app/tehw0lf/wlgen?utm_source=github.com&utm_medium=referral&utm_content=tehw0lf/wlgen&utm_campaign=Badge_Grade_Dashboard)
|
|
13
|
+
[](https://travis-ci.com/tehw0lf/wlgen) [](https://codecov.io/gh/tehw0lf/wlgen)
|
|
14
|
+
|
|
15
|
+
# Description
|
|
16
|
+
|
|
17
|
+
A recursive wordlist generator written in Python.
|
|
18
|
+
For each string position, custom character sets can be defined.
|
|
19
|
+
|
|
20
|
+
# Prerequisites
|
|
21
|
+
|
|
22
|
+
Python 3.x (developed on Python 3.6.4)
|
|
23
|
+
|
|
24
|
+
# Instructions
|
|
25
|
+
|
|
26
|
+
## Installation
|
|
27
|
+
|
|
28
|
+
To install from GitHub:
|
|
29
|
+
|
|
30
|
+
```
|
|
31
|
+
git clone https://github.com/tehw0lf/wlgen.git
|
|
32
|
+
cd wlgen
|
|
33
|
+
python setup.py test (optional unit tests to ensure functionality)
|
|
34
|
+
pip install .
|
|
35
|
+
```
|
|
36
|
+
|
|
37
|
+
To install from PyPI:
|
|
38
|
+
|
|
39
|
+
```
|
|
40
|
+
pip install wlgen
|
|
41
|
+
```
|
|
42
|
+
|
|
43
|
+
## Which function should I use?
|
|
44
|
+
|
|
45
|
+
Currently there are three implementations to generate a wordlist.
|
|
46
|
+
`gen_wordlist` builds the whole list in memory before writing it, `gen_words` is a generator that is memory efficient but slower.
|
|
47
|
+
`gen_wordlist_iter` uses `itertools.product` to generate the wordlist, which is recommended for lists that are too large to be built by `gen_wordlist`.
|
|
48
|
+
Both algorithms calculate the n-ary cartesian product of the input character sets.
|
wlgen-1.2/README.md
ADDED
|
@@ -0,0 +1,37 @@
|
|
|
1
|
+
[](https://app.codacy.com/app/tehw0lf/wlgen?utm_source=github.com&utm_medium=referral&utm_content=tehw0lf/wlgen&utm_campaign=Badge_Grade_Dashboard)
|
|
2
|
+
[](https://travis-ci.com/tehw0lf/wlgen) [](https://codecov.io/gh/tehw0lf/wlgen)
|
|
3
|
+
|
|
4
|
+
# Description
|
|
5
|
+
|
|
6
|
+
A recursive wordlist generator written in Python.
|
|
7
|
+
For each string position, custom character sets can be defined.
|
|
8
|
+
|
|
9
|
+
# Prerequisites
|
|
10
|
+
|
|
11
|
+
Python 3.x (developed on Python 3.6.4)
|
|
12
|
+
|
|
13
|
+
# Instructions
|
|
14
|
+
|
|
15
|
+
## Installation
|
|
16
|
+
|
|
17
|
+
To install from GitHub:
|
|
18
|
+
|
|
19
|
+
```
|
|
20
|
+
git clone https://github.com/tehw0lf/wlgen.git
|
|
21
|
+
cd wlgen
|
|
22
|
+
python setup.py test (optional unit tests to ensure functionality)
|
|
23
|
+
pip install .
|
|
24
|
+
```
|
|
25
|
+
|
|
26
|
+
To install from PyPI:
|
|
27
|
+
|
|
28
|
+
```
|
|
29
|
+
pip install wlgen
|
|
30
|
+
```
|
|
31
|
+
|
|
32
|
+
## Which function should I use?
|
|
33
|
+
|
|
34
|
+
Currently there are three implementations to generate a wordlist.
|
|
35
|
+
`gen_wordlist` builds the whole list in memory before writing it, `gen_words` is a generator that is memory efficient but slower.
|
|
36
|
+
`gen_wordlist_iter` uses `itertools.product` to generate the wordlist, which is recommended for lists that are too large to be built by `gen_wordlist`.
|
|
37
|
+
Both algorithms calculate the n-ary cartesian product of the input character sets.
|
wlgen-1.2/pyproject.toml
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
[project]
|
|
2
|
+
name="wlgen"
|
|
3
|
+
version="1.2"
|
|
4
|
+
description="A recursive wordlist generator written in python"
|
|
5
|
+
readme = "README.md"
|
|
6
|
+
authors = [
|
|
7
|
+
{ name = "tehw0lf", email = "tehwolf@protonmail.com" }
|
|
8
|
+
]
|
|
9
|
+
requires-python = ">=3.12"
|
|
10
|
+
dependencies = [
|
|
11
|
+
"ruff>=0.8.4",
|
|
12
|
+
"setuptools>=75.6.0",
|
|
13
|
+
]
|
|
14
|
+
|
|
15
|
+
[project.scripts]
|
|
16
|
+
wlgen = "wlgen:main"
|
|
17
|
+
|
|
18
|
+
[build-system]
|
|
19
|
+
requires = ["hatchling"]
|
|
20
|
+
build-backend = "hatchling.build"
|
wlgen-1.2/setup.cfg
ADDED
wlgen-1.2/setup.py
ADDED
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
from setuptools import setup
|
|
2
|
+
|
|
3
|
+
setup(
|
|
4
|
+
name="wlgen",
|
|
5
|
+
version="1.2",
|
|
6
|
+
description="A recursive wordlist generator written in python",
|
|
7
|
+
long_description="""A recursive wordlist generator written in Python.
|
|
8
|
+
For each string position, custom character sets can be defined.
|
|
9
|
+
Currently there are two implementations to generate a wordlist.
|
|
10
|
+
gen_wordlist builds the whole list in memory before writing it,
|
|
11
|
+
gen_words is a generator that is memory efficient but slower.
|
|
12
|
+
""",
|
|
13
|
+
url="https://github.com/tehw0lf/wlgen",
|
|
14
|
+
author="tehw0lf",
|
|
15
|
+
author_email="tehwolf@protonmail.com",
|
|
16
|
+
packages=["src/wlgen"],
|
|
17
|
+
zip_safe=False,
|
|
18
|
+
)
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
def gen_wordlist(charset):
|
|
2
|
+
"""Recursively build a wordlist in memory
|
|
3
|
+
|
|
4
|
+
Recursively builds a wordlist in memory, then returns complete list
|
|
5
|
+
which can be written to a file using either stdout or by specifying
|
|
6
|
+
an output file. The wordlist is being built bottom-up by combining
|
|
7
|
+
the current string position's character set with its previous one(s).
|
|
8
|
+
|
|
9
|
+
The input charset is assumed to be unique and sorted.
|
|
10
|
+
Example: {0: '123', 1: 'ABC', 2: '!"§ '}
|
|
11
|
+
"""
|
|
12
|
+
subset = {}
|
|
13
|
+
if len(charset) == 1:
|
|
14
|
+
return charset[0]
|
|
15
|
+
else:
|
|
16
|
+
current_pos = charset[0]
|
|
17
|
+
for str_pos in range(1, len(charset)):
|
|
18
|
+
subset[str_pos - 1] = charset[str_pos]
|
|
19
|
+
previous_pos = gen_wordlist(subset)
|
|
20
|
+
wlist = [(i + j) for i in current_pos for j in previous_pos]
|
|
21
|
+
return wlist
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
def gen_wordlist_iter(charset):
|
|
25
|
+
"""Generates a wordlist using itertools.product"""
|
|
26
|
+
from itertools import product
|
|
27
|
+
|
|
28
|
+
charlst = [sorted(set(i)) for i in charset.values()]
|
|
29
|
+
return map("".join, product(*charlst))
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
def gen_words(charset, positions=None, prev_iter=None):
|
|
33
|
+
"""Recursively generate wordlist word for word
|
|
34
|
+
|
|
35
|
+
Recursively generates a wordlist word for word, based on a given
|
|
36
|
+
sets of characters. charset is a dictionary containing character
|
|
37
|
+
sets for each string position of the generated words.
|
|
38
|
+
|
|
39
|
+
The input charset is assumed to be unique and sorted.
|
|
40
|
+
Example: {0: '123', 1: 'ABC', 2: '!"§ '}
|
|
41
|
+
"""
|
|
42
|
+
if prev_iter is None:
|
|
43
|
+
positions = [0 for i in charset]
|
|
44
|
+
cur_iter = 0
|
|
45
|
+
else:
|
|
46
|
+
cur_iter = prev_iter + 1
|
|
47
|
+
for idx, _ in enumerate(charset[cur_iter]):
|
|
48
|
+
positions[cur_iter] = idx
|
|
49
|
+
if cur_iter == len(charset) - 1:
|
|
50
|
+
yield "".join(
|
|
51
|
+
[charset[idx][val] for idx, val in enumerate(positions)]
|
|
52
|
+
)
|
|
53
|
+
else:
|
|
54
|
+
yield from gen_words(charset, positions, cur_iter)
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
import filecmp
|
|
2
|
+
import unittest
|
|
3
|
+
import os
|
|
4
|
+
import wlgen
|
|
5
|
+
|
|
6
|
+
|
|
7
|
+
class wlgen_test(unittest.TestCase):
|
|
8
|
+
def setUp(self):
|
|
9
|
+
self.cset = {0: "123", 1: "ABC", 2: ' !"$'}
|
|
10
|
+
if os.name == "nt":
|
|
11
|
+
self.sample = "src/wlgen/tests/files/sample_mixed_dos"
|
|
12
|
+
else:
|
|
13
|
+
self.sample = "src/wlgen/tests/files/sample_mixed_unix"
|
|
14
|
+
|
|
15
|
+
def test_mixed_words(self):
|
|
16
|
+
tfilepath = "src/wlgen/tests/files/tmp"
|
|
17
|
+
with open(tfilepath, "w", encoding="utf-8") as tfile:
|
|
18
|
+
for word in wlgen.gen_words(self.cset):
|
|
19
|
+
tfile.write("%s\n" % word)
|
|
20
|
+
self.assertTrue(filecmp.cmp(tfilepath, self.sample))
|
|
21
|
+
|
|
22
|
+
def test_mixed_list(self):
|
|
23
|
+
tfilepath = "src/wlgen/tests/files/tmp"
|
|
24
|
+
with open(tfilepath, "w", encoding="utf-8") as tfile:
|
|
25
|
+
for word in wlgen.gen_wordlist(self.cset):
|
|
26
|
+
tfile.write("%s\n" % word)
|
|
27
|
+
self.assertTrue(filecmp.cmp(tfilepath, self.sample))
|
|
28
|
+
|
|
29
|
+
def test_mixed_iter(self):
|
|
30
|
+
tfilepath = "src/wlgen/tests/files/tmp"
|
|
31
|
+
with open(tfilepath, "w", encoding="utf-8") as tfile:
|
|
32
|
+
for word in wlgen.gen_wordlist_iter(self.cset):
|
|
33
|
+
tfile.write("%s\n" % word)
|
|
34
|
+
self.assertTrue(filecmp.cmp(tfilepath, self.sample))
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
if __name__ == "__main__":
|
|
38
|
+
unittest.main()
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
1A
|
|
2
|
+
1A!
|
|
3
|
+
1A"
|
|
4
|
+
1A$
|
|
5
|
+
1B
|
|
6
|
+
1B!
|
|
7
|
+
1B"
|
|
8
|
+
1B$
|
|
9
|
+
1C
|
|
10
|
+
1C!
|
|
11
|
+
1C"
|
|
12
|
+
1C$
|
|
13
|
+
2A
|
|
14
|
+
2A!
|
|
15
|
+
2A"
|
|
16
|
+
2A$
|
|
17
|
+
2B
|
|
18
|
+
2B!
|
|
19
|
+
2B"
|
|
20
|
+
2B$
|
|
21
|
+
2C
|
|
22
|
+
2C!
|
|
23
|
+
2C"
|
|
24
|
+
2C$
|
|
25
|
+
3A
|
|
26
|
+
3A!
|
|
27
|
+
3A"
|
|
28
|
+
3A$
|
|
29
|
+
3B
|
|
30
|
+
3B!
|
|
31
|
+
3B"
|
|
32
|
+
3B$
|
|
33
|
+
3C
|
|
34
|
+
3C!
|
|
35
|
+
3C"
|
|
36
|
+
3C$
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
1A
|
|
2
|
+
1A!
|
|
3
|
+
1A"
|
|
4
|
+
1A$
|
|
5
|
+
1B
|
|
6
|
+
1B!
|
|
7
|
+
1B"
|
|
8
|
+
1B$
|
|
9
|
+
1C
|
|
10
|
+
1C!
|
|
11
|
+
1C"
|
|
12
|
+
1C$
|
|
13
|
+
2A
|
|
14
|
+
2A!
|
|
15
|
+
2A"
|
|
16
|
+
2A$
|
|
17
|
+
2B
|
|
18
|
+
2B!
|
|
19
|
+
2B"
|
|
20
|
+
2B$
|
|
21
|
+
2C
|
|
22
|
+
2C!
|
|
23
|
+
2C"
|
|
24
|
+
2C$
|
|
25
|
+
3A
|
|
26
|
+
3A!
|
|
27
|
+
3A"
|
|
28
|
+
3A$
|
|
29
|
+
3B
|
|
30
|
+
3B!
|
|
31
|
+
3B"
|
|
32
|
+
3B$
|
|
33
|
+
3C
|
|
34
|
+
3C!
|
|
35
|
+
3C"
|
|
36
|
+
3C$
|
|
@@ -0,0 +1,36 @@
|
|
|
1
|
+
1A
|
|
2
|
+
1A!
|
|
3
|
+
1A"
|
|
4
|
+
1A$
|
|
5
|
+
1B
|
|
6
|
+
1B!
|
|
7
|
+
1B"
|
|
8
|
+
1B$
|
|
9
|
+
1C
|
|
10
|
+
1C!
|
|
11
|
+
1C"
|
|
12
|
+
1C$
|
|
13
|
+
2A
|
|
14
|
+
2A!
|
|
15
|
+
2A"
|
|
16
|
+
2A$
|
|
17
|
+
2B
|
|
18
|
+
2B!
|
|
19
|
+
2B"
|
|
20
|
+
2B$
|
|
21
|
+
2C
|
|
22
|
+
2C!
|
|
23
|
+
2C"
|
|
24
|
+
2C$
|
|
25
|
+
3A
|
|
26
|
+
3A!
|
|
27
|
+
3A"
|
|
28
|
+
3A$
|
|
29
|
+
3B
|
|
30
|
+
3B!
|
|
31
|
+
3B"
|
|
32
|
+
3B$
|
|
33
|
+
3C
|
|
34
|
+
3C!
|
|
35
|
+
3C"
|
|
36
|
+
3C$
|
wlgen-1.2/uv.lock
ADDED
|
@@ -0,0 +1,51 @@
|
|
|
1
|
+
version = 1
|
|
2
|
+
requires-python = ">=3.12"
|
|
3
|
+
|
|
4
|
+
[[package]]
|
|
5
|
+
name = "ruff"
|
|
6
|
+
version = "0.8.4"
|
|
7
|
+
source = { registry = "https://pypi.org/simple" }
|
|
8
|
+
sdist = { url = "https://files.pythonhosted.org/packages/34/37/9c02181ef38d55b77d97c68b78e705fd14c0de0e5d085202bb2b52ce5be9/ruff-0.8.4.tar.gz", hash = "sha256:0d5f89f254836799af1615798caa5f80b7f935d7a670fad66c5007928e57ace8", size = 3402103 }
|
|
9
|
+
wheels = [
|
|
10
|
+
{ url = "https://files.pythonhosted.org/packages/05/67/f480bf2f2723b2e49af38ed2be75ccdb2798fca7d56279b585c8f553aaab/ruff-0.8.4-py3-none-linux_armv6l.whl", hash = "sha256:58072f0c06080276804c6a4e21a9045a706584a958e644353603d36ca1eb8a60", size = 10546415 },
|
|
11
|
+
{ url = "https://files.pythonhosted.org/packages/eb/7a/5aba20312c73f1ce61814e520d1920edf68ca3b9c507bd84d8546a8ecaa8/ruff-0.8.4-py3-none-macosx_10_12_x86_64.whl", hash = "sha256:ffb60904651c00a1e0b8df594591770018a0f04587f7deeb3838344fe3adabac", size = 10346113 },
|
|
12
|
+
{ url = "https://files.pythonhosted.org/packages/76/f4/c41de22b3728486f0aa95383a44c42657b2db4062f3234ca36fc8cf52d8b/ruff-0.8.4-py3-none-macosx_11_0_arm64.whl", hash = "sha256:6ddf5d654ac0d44389f6bf05cee4caeefc3132a64b58ea46738111d687352296", size = 9943564 },
|
|
13
|
+
{ url = "https://files.pythonhosted.org/packages/0e/f0/afa0d2191af495ac82d4cbbfd7a94e3df6f62a04ca412033e073b871fc6d/ruff-0.8.4-py3-none-manylinux_2_17_aarch64.manylinux2014_aarch64.whl", hash = "sha256:e248b1f0fa2749edd3350a2a342b67b43a2627434c059a063418e3d375cfe643", size = 10805522 },
|
|
14
|
+
{ url = "https://files.pythonhosted.org/packages/12/57/5d1e9a0fd0c228e663894e8e3a8e7063e5ee90f8e8e60cf2085f362bfa1a/ruff-0.8.4-py3-none-manylinux_2_17_armv7l.manylinux2014_armv7l.whl", hash = "sha256:bf197b98ed86e417412ee3b6c893f44c8864f816451441483253d5ff22c0e81e", size = 10306763 },
|
|
15
|
+
{ url = "https://files.pythonhosted.org/packages/04/df/f069fdb02e408be8aac6853583572a2873f87f866fe8515de65873caf6b8/ruff-0.8.4-py3-none-manylinux_2_17_i686.manylinux2014_i686.whl", hash = "sha256:c41319b85faa3aadd4d30cb1cffdd9ac6b89704ff79f7664b853785b48eccdf3", size = 11359574 },
|
|
16
|
+
{ url = "https://files.pythonhosted.org/packages/d3/04/37c27494cd02e4a8315680debfc6dfabcb97e597c07cce0044db1f9dfbe2/ruff-0.8.4-py3-none-manylinux_2_17_ppc64.manylinux2014_ppc64.whl", hash = "sha256:9f8402b7c4f96463f135e936d9ab77b65711fcd5d72e5d67597b543bbb43cf3f", size = 12094851 },
|
|
17
|
+
{ url = "https://files.pythonhosted.org/packages/81/b1/c5d7fb68506cab9832d208d03ea4668da9a9887a4a392f4f328b1bf734ad/ruff-0.8.4-py3-none-manylinux_2_17_ppc64le.manylinux2014_ppc64le.whl", hash = "sha256:e4e56b3baa9c23d324ead112a4fdf20db9a3f8f29eeabff1355114dd96014604", size = 11655539 },
|
|
18
|
+
{ url = "https://files.pythonhosted.org/packages/ef/38/8f8f2c8898dc8a7a49bc340cf6f00226917f0f5cb489e37075bcb2ce3671/ruff-0.8.4-py3-none-manylinux_2_17_s390x.manylinux2014_s390x.whl", hash = "sha256:736272574e97157f7edbbb43b1d046125fce9e7d8d583d5d65d0c9bf2c15addf", size = 12912805 },
|
|
19
|
+
{ url = "https://files.pythonhosted.org/packages/06/dd/fa6660c279f4eb320788876d0cff4ea18d9af7d9ed7216d7bd66877468d0/ruff-0.8.4-py3-none-manylinux_2_17_x86_64.manylinux2014_x86_64.whl", hash = "sha256:e5fe710ab6061592521f902fca7ebcb9fabd27bc7c57c764298b1c1f15fff720", size = 11205976 },
|
|
20
|
+
{ url = "https://files.pythonhosted.org/packages/a8/d7/de94cc89833b5de455750686c17c9e10f4e1ab7ccdc5521b8fe911d1477e/ruff-0.8.4-py3-none-musllinux_1_2_aarch64.whl", hash = "sha256:13e9ec6d6b55f6da412d59953d65d66e760d583dd3c1c72bf1f26435b5bfdbae", size = 10792039 },
|
|
21
|
+
{ url = "https://files.pythonhosted.org/packages/6d/15/3e4906559248bdbb74854af684314608297a05b996062c9d72e0ef7c7097/ruff-0.8.4-py3-none-musllinux_1_2_armv7l.whl", hash = "sha256:97d9aefef725348ad77d6db98b726cfdb075a40b936c7984088804dfd38268a7", size = 10400088 },
|
|
22
|
+
{ url = "https://files.pythonhosted.org/packages/a2/21/9ed4c0e8133cb4a87a18d470f534ad1a8a66d7bec493bcb8bda2d1a5d5be/ruff-0.8.4-py3-none-musllinux_1_2_i686.whl", hash = "sha256:ab78e33325a6f5374e04c2ab924a3367d69a0da36f8c9cb6b894a62017506111", size = 10900814 },
|
|
23
|
+
{ url = "https://files.pythonhosted.org/packages/0d/5d/122a65a18955bd9da2616b69bc839351f8baf23b2805b543aa2f0aed72b5/ruff-0.8.4-py3-none-musllinux_1_2_x86_64.whl", hash = "sha256:8ef06f66f4a05c3ddbc9121a8b0cecccd92c5bf3dd43b5472ffe40b8ca10f0f8", size = 11268828 },
|
|
24
|
+
{ url = "https://files.pythonhosted.org/packages/43/a9/1676ee9106995381e3d34bccac5bb28df70194167337ed4854c20f27c7ba/ruff-0.8.4-py3-none-win32.whl", hash = "sha256:552fb6d861320958ca5e15f28b20a3d071aa83b93caee33a87b471f99a6c0835", size = 8805621 },
|
|
25
|
+
{ url = "https://files.pythonhosted.org/packages/10/98/ed6b56a30ee76771c193ff7ceeaf1d2acc98d33a1a27b8479cbdb5c17a23/ruff-0.8.4-py3-none-win_amd64.whl", hash = "sha256:f21a1143776f8656d7f364bd264a9d60f01b7f52243fbe90e7670c0dfe0cf65d", size = 9660086 },
|
|
26
|
+
{ url = "https://files.pythonhosted.org/packages/13/9f/026e18ca7d7766783d779dae5e9c656746c6ede36ef73c6d934aaf4a6dec/ruff-0.8.4-py3-none-win_arm64.whl", hash = "sha256:9183dd615d8df50defa8b1d9a074053891ba39025cf5ae88e8bcb52edcc4bf08", size = 9074500 },
|
|
27
|
+
]
|
|
28
|
+
|
|
29
|
+
[[package]]
|
|
30
|
+
name = "setuptools"
|
|
31
|
+
version = "75.6.0"
|
|
32
|
+
source = { registry = "https://pypi.org/simple" }
|
|
33
|
+
sdist = { url = "https://files.pythonhosted.org/packages/43/54/292f26c208734e9a7f067aea4a7e282c080750c4546559b58e2e45413ca0/setuptools-75.6.0.tar.gz", hash = "sha256:8199222558df7c86216af4f84c30e9b34a61d8ba19366cc914424cdbd28252f6", size = 1337429 }
|
|
34
|
+
wheels = [
|
|
35
|
+
{ url = "https://files.pythonhosted.org/packages/55/21/47d163f615df1d30c094f6c8bbb353619274edccf0327b185cc2493c2c33/setuptools-75.6.0-py3-none-any.whl", hash = "sha256:ce74b49e8f7110f9bf04883b730f4765b774ef3ef28f722cce7c273d253aaf7d", size = 1224032 },
|
|
36
|
+
]
|
|
37
|
+
|
|
38
|
+
[[package]]
|
|
39
|
+
name = "wlgen"
|
|
40
|
+
version = "1.2"
|
|
41
|
+
source = { editable = "." }
|
|
42
|
+
dependencies = [
|
|
43
|
+
{ name = "ruff" },
|
|
44
|
+
{ name = "setuptools" },
|
|
45
|
+
]
|
|
46
|
+
|
|
47
|
+
[package.metadata]
|
|
48
|
+
requires-dist = [
|
|
49
|
+
{ name = "ruff", specifier = ">=0.8.4" },
|
|
50
|
+
{ name = "setuptools", specifier = ">=75.6.0" },
|
|
51
|
+
]
|