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 71 72 73 74 75 76 77 78 79 80
|
[build-system]
requires = ["setuptools", "setuptools-scm", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "pyee"
version = "13.0.0"
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.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Other/Nonlisted Topic",
]
requires-python = ">=3.8"
dependencies = [
"typing-extensions"
]
[project.optional-dependencies]
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",
"toml",
"tox",
"trio",
"trio; python_version > '3.6'",
"trio-typing; python_version > '3.6'",
"twine",
"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"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
optional-dependencies.dev = { file = ["requirements_dev.txt"] }
|