Skip to content

Commit

Permalink
Updated. Changed pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
gil9red committed May 23, 2023
1 parent 2bd8967 commit 08bce54
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
5 changes: 4 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,5 @@
[project]
name = "simple-wait"
version = "1.0.1"
authors = [
{ name="Ilya Petrash", email="[email protected]" },
]
Expand All @@ -12,6 +11,7 @@ classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = ["wait"]

Expand All @@ -23,5 +23,8 @@ keywords = ["wait"]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"

[tool.setuptools.dynamic]
version = { attr = "src.simple_wait.__version__" }

[tool.setuptools.packages.find]
where = ["src"]
2 changes: 1 addition & 1 deletion src/simple_wait/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
# -*- coding: utf-8 -*-

__author__ = "ipetrash"
__version__ = "1.0.1"
__version__ = "1.0.2"


import sys
Expand Down

0 comments on commit 08bce54

Please sign in to comment.