-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
39 lines (36 loc) · 953 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
39
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "usim"
author = "Eileen Kuehn, Max Fischer"
author-email = "[email protected]"
home-page = "https://github.com/MaineKuehn/usim"
description-file = "README.rst"
keywords = "simulation simpy event loop async coroutine"
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3 :: Only",
]
requires = [
"sortedcontainers",
"asyncstdlib>=1.1.1",
"typing_extensions>=3.10.0",
]
[tool.flit.metadata.requires-extra]
test = [
"pytest >=4.3.0",
"flake8",
"flake8-bugbear",
"black; implementation_name=='cpython'",
]
doc = [
"sphinx",
"sphinx_rtd_theme",
"sphinxcontrib-contentui",
"sphinxcontrib-trio"
]
[tool.flit.metadata.urls]
Documentation = "https://usim.readthedocs.io"