-
Notifications
You must be signed in to change notification settings - Fork 6
/
pyproject.toml
40 lines (36 loc) · 1.02 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
[build-system]
requires = ["flit-core >= 3.8"]
build-backend = "flit_core.buildapi"
[project]
name = "later"
dynamic = ["version", "description"]
readme = "README.rst"
authors = [
{name="Meta Platforms, Inc"},
{name="Jason Fried", email="fried@meta.com"},
]
license = {file="LICENSE"}
keywords = ["asyncio", "later"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"License :: OSI Approved :: Apache Software License",
"Operating System :: POSIX",
"Operating System :: MacOS :: MacOS X",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Software Development :: Testing",
]
requires-python = ">=3.10"
dependencies = [
"async-timeout >= 2.0.0, < 5.0.0",
]
[project.optional-dependencies]
dev = [
"async-timeout==4.0.3",
"coverage==7.6.9",
"flit==3.10.1",
]
[project.urls]
Github = "https://github.com/facebookincubator/later"