forked from gidgethub/gidgethub
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
45 lines (40 loc) · 1.34 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
41
42
43
44
45
[build-system]
requires = ["flit"]
build-backend = "flit.buildapi"
[tool.flit.metadata]
module = "gidgethub"
author = "Brett Cannon"
author-email = "brett@python.org"
requires = [
"uritemplate>=3.0.1",
"PyJWT[crypto]"
]
requires-python = ">=3.6"
license = "Apache"
keywords = "github sans-io async"
description-file = "README.rst"
classifiers = ["Intended Audience :: Developers",
"License :: OSI Approved :: Apache Software License",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8"
]
[tool.flit.metadata.requires-extra]
test = ["importlib-resources", "pytest>=5.4.1", "pytest-asyncio", "pytest-tornasync"]
doc = ["sphinx"]
# The 'dev' target should contain all dependencies listed in any extras coming
# after it to make sure that the test suite will run successfully.
dev = ["aiohttp", "black", "coverage[toml]>=5.0.3", "httpx", "mypy", "pytest-cov",
"pytest-xdist", "tornado"]
aiohttp = ["aiohttp"]
tornado = ["tornado"]
httpx = ["httpx>=0.11.0"]
[tool.flit.metadata.urls]
Documentation = "https://gidgethub.readthedocs.io"
Repository = "https://github.com/brettcannon/gidgethub"
[tool.coverage.run]
branch = true
[tool.coverage.report]
fail_under = 100