Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion MANIFEST.in
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@ recursive-include vendor/libuv *
recursive-exclude vendor/libuv/.git *
recursive-exclude vendor/libuv/docs *
recursive-exclude vendor/libuv/img *
include LICENSE-MIT LICENSE-APACHE README.rst Makefile performance.png .flake8 mypy.ini
include Makefile performance.png .flake8 mypy.ini
9 changes: 4 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ description = "Fast implementation of asyncio event loop on top of libuv"
authors = [{name = "Yury Selivanov", email = "[email protected]"}]
requires-python = '>=3.8.1'
readme = "README.rst"
license = {text = "MIT License"}
license = "MIT OR Apache-2.0"
license-files = ["LICENSE-APACHE", "LICENSE-MIT"]
dynamic = ["version"]
keywords = [
"asyncio",
Expand All @@ -14,8 +15,6 @@ classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Programming Language :: Python :: 3 :: Only",
Expand Down Expand Up @@ -45,7 +44,7 @@ test = [
'mypy>=0.800',
]
dev = [
'setuptools>=60',
'setuptools>=77.0.3',
'Cython~=3.0',
]
docs = [
Expand All @@ -56,7 +55,7 @@ docs = [

[build-system]
requires = [
"setuptools>=60",
"setuptools>=77.0.3",
"wheel",
"Cython~=3.1",
]
Expand Down
Loading