-
Notifications
You must be signed in to change notification settings - Fork 44
Expand file tree
/
Copy pathpyproject.toml
More file actions
70 lines (63 loc) · 1.72 KB
/
pyproject.toml
File metadata and controls
70 lines (63 loc) · 1.72 KB
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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyee"
version = "13.0.1"
authors = [
{name = "Josh Holbrook", email = "josh.holbrook@gmail.com"}
]
urls = {Repository = "https://github.com/jfhbrook/pyee", Documentation = "https://pyee.readthedocs.io"}
description = "A rough port of Node.js's EventEmitter to Python with a few tricks of its own"
readme = "README.md"
keywords = ["events", "emitter", "node.js", "node", "eventemitter", "event_emitter"]
license = { text = "MIT" }
classifiers = [
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14",
"Topic :: Other/Nonlisted Topic",
]
requires-python = ">=3.12"
dependencies = [
"typing-extensions"
]
[dependency-groups]
dev = [
"build",
"flake8",
"flake8-black",
"pytest",
"pytest-asyncio; python_version >= '3.4'",
"pytest-trio; python_version >= '3.7'",
"black",
"isort",
"jupyter-console",
"mkdocs",
"mkdocs-include-markdown-plugin",
"mkdocstrings[python]",
"mypy",
"sphinx",
"tox",
"trio; python_version > '3.6'",
"trio-typing; python_version > '3.6'",
"twisted",
"validate-pyproject[all]",
]
[tool.isort]
profile = "appnexus"
known_application = "pyee"
[tool.pyright]
include = ["pyee", "tests"]
[tool.pytest.ini_options]
addopts = "--verbose -s"
testpaths = [ "tests" ]
[tool.setuptools]
packages = ["pyee"]