Skip to content

Commit 9c38840

Browse files
committed
Remove legacy fields from pyproject.toml
1 parent 22af6cb commit 9c38840

File tree

1 file changed

+13
-5
lines changed

1 file changed

+13
-5
lines changed

pyproject.toml

Lines changed: 13 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -30,10 +30,6 @@ dependencies = [
3030
"typing-extensions>=4.0",
3131
]
3232

33-
# Legacy fields
34-
author = "Diprog, Florian Zager"
35-
url = "https://github.com/diprog/python-tls-client-async"
36-
3733
[project.urls]
3834
Homepage = "https://github.com/diprog/python-tls-client-async"
3935
Documentation = "https://github.com/diprog/python-tls-client-async#readme"
@@ -54,4 +50,16 @@ async_tls_client = [
5450
[tool.setuptools.packages.find]
5551
where = ["."]
5652
include = ["async_tls_client*"]
57-
exclude = ["tests*", "examples*", "scripts*"]
53+
exclude = ["tests*", "examples*", "scripts*"]
54+
55+
56+
# Tests
57+
[project.optional-dependencies]
58+
test = [
59+
"pytest>=7.0",
60+
"pytest-asyncio>=0.20",
61+
]
62+
63+
[tool.pytest.ini_options]
64+
asyncio_mode = "auto"
65+
addopts = "-v"

0 commit comments

Comments
 (0)