1
- [tool . poetry ]
1
+ [project ]
2
2
name = " kasa-crypt"
3
3
version = " 0.6.2"
4
4
license = " Apache-2.0"
5
5
description = " Fast kasa crypt"
6
- authors = [
" J. Nick Koston < [email protected] > " ]
6
+ authors = [
{ name = " J. Nick Koston" , email = " [email protected] " } ]
7
7
readme = " README.md"
8
- repository = " https://github.com/bdraco/kasa-crypt"
8
+ requires-python = " >=3.9"
9
+
10
+ [project .urls ]
11
+ "Repository" = " https://github.com/python-kasa/kasa-crypt"
12
+ "Bug Tracker" = " https://github.com/python-kasa/kasa-crypt/issues"
13
+ "Changelog" = " https://github.com/python-kasa/kasa-crypt/blob/main/CHANGELOG.md"
14
+
15
+ [tool .poetry ]
9
16
classifiers = [
10
17
" Development Status :: 2 - Pre-Alpha" ,
11
18
" Intended Audience :: Developers" ,
@@ -21,24 +28,19 @@ packages = [
21
28
generate-setup-file = true
22
29
script = " build_ext.py"
23
30
24
- [tool .poetry .urls ]
25
- "Bug Tracker" = " https://github.com/bdraco/kasa-crypt/issues"
26
- "Changelog" = " https://github.com/bdraco/kasa-crypt/blob/main/CHANGELOG.md"
27
-
28
31
[tool .poetry .dependencies ]
29
32
python = " ^3.9"
30
33
31
34
[tool .poetry .group .dev .dependencies ]
32
35
pytest = " >=7,<9"
33
36
pytest-cov = " >=3,<7"
34
37
35
-
36
38
[tool .poetry .group .test .dependencies ]
37
39
cython = " >=0.29.35,<3.1.0"
38
40
39
41
[tool .semantic_release ]
40
42
branch = " main"
41
- version_toml = [" pyproject.toml:tool.poetry .version" ]
43
+ version_toml = [" pyproject.toml:project .version" ]
42
44
version_variables = [" src/kasa_crypt/__init__.py:__version__" ]
43
45
build_command = " pip install poetry && poetry build"
44
46
@@ -81,5 +83,5 @@ module = "tests.*"
81
83
allow_untyped_defs = true
82
84
83
85
[build-system ]
84
- requires = [' setuptools>=77.0' , ' Cython>=3' , " poetry-core>=1.0 .0" ]
86
+ requires = [' setuptools>=77.0' , ' Cython>=3' , " poetry-core>=2.1 .0" ]
85
87
build-backend = " poetry.core.masonry.api"
0 commit comments