Skip to content

Commit

Permalink
bump version number
Browse files Browse the repository at this point in the history
  • Loading branch information
byildiz committed Oct 1, 2024
1 parent 6ba4fe5 commit 11ec757
Showing 1 changed file with 24 additions and 27 deletions.
51 changes: 24 additions & 27 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,16 +1,13 @@
[tool.poetry]
name = "topgen"
version = "0.1.0"
version = "0.1.1"
description = "Time-based one-time password generator"
authors = ["Burak Yildiz <0byldz@gmail.com>"]
license = "MIT"
readme = "README.md"
homepage = "https://github.com/byildiz/topgen"
keywords = ["totp", "totp-generator", "totp-cli", "google-authenticator"]
classifiers = [
"Topic :: Security :: Cryptography",
"Topic :: Utilities"
]
classifiers = ["Topic :: Security :: Cryptography", "Topic :: Utilities"]

[tool.poetry.dependencies]
python = ">=3.10"
Expand Down Expand Up @@ -43,27 +40,27 @@ unfixable = []

# Exclude a variety of commonly ignored directories.
exclude = [
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
".bzr",
".direnv",
".eggs",
".git",
".git-rewrite",
".hg",
".mypy_cache",
".nox",
".pants.d",
".pytype",
".ruff_cache",
".svn",
".tox",
".venv",
"__pypackages__",
"_build",
"buck-out",
"build",
"dist",
"node_modules",
"venv",
]
per-file-ignores = {}

Expand All @@ -73,4 +70,4 @@ line-length = 120
# Allow unused variables when underscore-prefixed.
dummy-variable-rgx = "^(_+|(_+[a-zA-Z0-9_]*[a-zA-Z0-9]+?))$"

target-version = "py310"
target-version = "py310"

0 comments on commit 11ec757

Please sign in to comment.