Skip to content
This repository has been archived by the owner on Jun 20, 2024. It is now read-only.

Commit

Permalink
release as more-captcha
Browse files Browse the repository at this point in the history
Signed-off-by: Ari Archer <ari.web.xyz@gmail.com>
  • Loading branch information
Ari Archer committed Oct 30, 2023
1 parent cb528e7 commit 7719231
Show file tree
Hide file tree
Showing 35 changed files with 39 additions and 4 deletions.
2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Captcha

a fork of <https://github.com/lepture/captcha> with support of a lot more data

A captcha library that generates audio and image CAPTCHAs.


Expand Down
2 changes: 2 additions & 0 deletions README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ Captcha

A captcha library that generates audio and image CAPTCHAs.

a fork of <https://github.com/lepture/captcha> with support of a lot more data

Features
--------

Expand Down
9 changes: 6 additions & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
[project]
name = "captcha"
name = "more-captcha"
description = "A captcha library that generates audio and image CAPTCHAs."
authors = [{name = "Hsiaoming Yang", email="me@lepture.com"}]
authors = [{name = "Hsiaoming Yang", email="me@lepture.com"}, {name = "Ari Archer", email="ari.web.xyz@gmail.com"}]
dependencies = [
"Pillow",
]
Expand All @@ -22,13 +22,16 @@ classifiers = [
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: Implementation :: CPython",
"Topic :: Security",
]

[project.urls]
Documentation = "https://captcha.lepture.com/"
Source = "https://github.com/lepture/captcha"
Source = "https://ari-web.xyz/gh/captcha"
Original = "https://github.com/lepture/captcha"

[build-system]
requires = ["setuptools"]
Expand Down
15 changes: 15 additions & 0 deletions scripts/git.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env sh

set -xe

main() {
tox

git add -A
git commit -sa
git push -u origin "$(git rev-parse --abbrev-ref HEAD)"

./scripts/pypi.sh
}

main "$@"
12 changes: 12 additions & 0 deletions scripts/pypi.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
#!/usr/bin/env sh

set -eux

main() {
rm -rf -- dist

python3 -m build --wheel
python3 -m twine upload dist/*.whl
}

main "$@"
3 changes: 2 additions & 1 deletion src/captcha/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -12,4 +12,5 @@

__version__ = '0.5.0'
__author__ = 'Hsiaoming Yang <me@lepture.com>'
__homepage__ = 'https://github.com/lepture/captcha'
__co_author__ = 'Ari Archer <ari.web.xyz@gmail.com>'
__homepage__ = 'https://ari-web.xyz/gh/captcha'
Binary file added src/captcha/data/ /default.wav
Binary file not shown.
Binary file added src/captcha/data/!/default.wav
Binary file not shown.
Binary file added src/captcha/data/"/default.wav
Binary file not shown.
Binary file added src/captcha/data/#/default.wav
Binary file not shown.
Binary file added src/captcha/data/$/default.wav
Binary file not shown.
Binary file added src/captcha/data/%/default.wav
Binary file not shown.
Binary file added src/captcha/data/&/default.wav
Binary file not shown.
Binary file added src/captcha/data/'/default.wav
Binary file not shown.
Binary file added src/captcha/data/(/default.wav
Binary file not shown.
Binary file added src/captcha/data/)/default.wav
Binary file not shown.
Binary file added src/captcha/data/*/default.wav
Binary file not shown.
Binary file added src/captcha/data/+/default.wav
Binary file not shown.
Binary file added src/captcha/data/,/default.wav
Binary file not shown.
Binary file added src/captcha/data/-/default.wav
Binary file not shown.
Binary file added src/captcha/data/:/default.wav
Binary file not shown.
Binary file added src/captcha/data/;/default.wav
Binary file not shown.
Binary file added src/captcha/data/</default.wav
Binary file not shown.
Binary file added src/captcha/data/=/default.wav
Binary file not shown.
Binary file added src/captcha/data/>/default.wav
Binary file not shown.
Binary file added src/captcha/data/?/default.wav
Binary file not shown.
Binary file added src/captcha/data/@/default.wav
Binary file not shown.
Binary file added src/captcha/data/[/default.wav
Binary file not shown.
Binary file added src/captcha/data/]/default.wav
Binary file not shown.
Binary file added src/captcha/data/^/default.wav
Binary file not shown.
Binary file added src/captcha/data/_/default.wav
Binary file not shown.
Binary file added src/captcha/data/`/default.wav
Binary file not shown.
Binary file added src/captcha/data/{/default.wav
Binary file not shown.
Binary file added src/captcha/data/}/default.wav
Binary file not shown.
Binary file added src/captcha/data/~/default.wav
Binary file not shown.

0 comments on commit 7719231

Please sign in to comment.