-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpyproject.toml
38 lines (33 loc) · 848 Bytes
/
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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "aiofastforward"
version = "0.0.0.dev0"
authors = [
{ name="Michal Charemza", email="michal@charemza.name" },
]
description = "Fast-forward time in asyncio Python by patching loop.time, loop.call_later, loop.call_at, and asyncio.sleep"
readme = "README.md"
requires-python = ">=3.6.7"
license = "MIT"
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Framework :: AsyncIO",
]
[project.optional-dependencies]
dev = [
"pytest",
"pytest-cov",
"pytest-asyncio",
]
[project.urls]
"Homepage" = "https://github.com/michalc/aiofastforward"
[tool.pytest.ini_options]
asyncio_mode = "auto"
[tool.hatch.build]
include = [
"aiofastforward.py",
]