-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
47 lines (42 loc) · 1.29 KB
/
pyproject.toml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"
[tool.poetry]
name = "cs-events"
version = "0.5.0"
description = "C#-style event handling mechanism for Python"
authors = ["Daniel Jeong <[email protected]>"]
keywords = ["python", "event", "c#"]
readme = "README.md"
license = "MIT"
repository = "https://github.com/wise0704/python-cs-events"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Topic :: Software Development :: Libraries",
"Typing :: Typed",
]
packages = [
{ include = "events", from = "src" },
]
[tool.poetry.dependencies]
python = "^3.10"
typing-extensions = { version = "^4.0.1", python = "<3.12" }
[tool.poetry.group.dev.dependencies]
flake8 = "^6.0.0"
pytest = "^7.2.1"
[tool.poetry.urls]
"Issues" = "https://github.com/wise0704/python-cs-events/issues"
[tool.pytest.ini_options]
addopts = "-rA"
console_output_style = "count"
python_files = "test_*.py"
python_functions = "test_"
testpaths = "tests"