Skip to content

Commit 08bce54

Browse files
committed
Updated. Changed pyproject.toml
1 parent 2bd8967 commit 08bce54

File tree

2 files changed

+5
-2
lines changed

2 files changed

+5
-2
lines changed

pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
[project]
22
name = "simple-wait"
3-
version = "1.0.1"
43
authors = [
54
{ name="Ilya Petrash", email="ilya.petrash@inbox.ru" },
65
]
@@ -12,6 +11,7 @@ classifiers = [
1211
"Programming Language :: Python :: 3",
1312
"License :: OSI Approved :: MIT License",
1413
"Operating System :: OS Independent",
14+
"Topic :: Software Development :: Libraries :: Python Modules",
1515
]
1616
keywords = ["wait"]
1717

@@ -23,5 +23,8 @@ keywords = ["wait"]
2323
requires = ["setuptools"]
2424
build-backend = "setuptools.build_meta"
2525

26+
[tool.setuptools.dynamic]
27+
version = { attr = "src.simple_wait.__version__" }
28+
2629
[tool.setuptools.packages.find]
2730
where = ["src"]

src/simple_wait/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
# -*- coding: utf-8 -*-
33

44
__author__ = "ipetrash"
5-
__version__ = "1.0.1"
5+
__version__ = "1.0.2"
66

77

88
import sys

0 commit comments

Comments
 (0)