-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
65 lines (60 loc) · 1.51 KB
/
Copy pathpyproject.toml
File metadata and controls
65 lines (60 loc) · 1.51 KB
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
[build-system]
requires = ["flit_core >=3.2,<4"]
build-backend = "flit_core.buildapi"
[project]
name = "mutiny"
readme = "README.md"
authors = [
{name = "Jakub Kuczys (jack1142)"},
]
classifiers = [
"Development Status :: 3 - Alpha",
"Framework :: AsyncIO",
"Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3.9",
"Topic :: Internet",
"Topic :: Software Development :: Libraries",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Utilities",
"Typing :: Typed",
]
requires-python = ">=3.9,<3.10"
dynamic = ["description", "version"]
dependencies = [
"aiohttp~=3.7",
"ulid-py~=1.0",
"yarl~=1.6",
]
[project.urls]
"Documentation" = "https://mutiny.readthedocs.io"
"Sponsor on GitHub" = "https://github.com/sponsors/jack1142"
"Issue Tracker" = "https://github.com/jack1142/Mutiny/issues"
"Source Code" = "https://github.com/jack1142/Mutiny"
[project.optional-dependencies]
msgpack = [
"msgpack~=1.0"
]
docs = [
"furo==2021.08.17.beta43",
"Sphinx~=4.1.2",
"sphinx-copybutton~=0.4.0",
"sphinx-design~=0.0.12",
"sphinx-jinja~=1.1",
"sphinx-prompt~=1.5",
"sphinxcontrib-trio~=1.1.2",
]
dev = [
"black==21.7b0",
"flake8==3.9.2",
"isort==5.9.3",
"mypy==0.910",
"msgpack-types>=0.2.0"
]
[tool.black]
target-version = ["py39"]
[tool.isort]
profile = "black"
combine_as_imports = true
filter_files = true