-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
53 lines (45 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
46
47
48
49
50
51
52
53
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2"]
build-backend = "setuptools.build_meta"
[project]
name = "io-chunks"
description = "Utilities to divide a buffer into smaller buffers"
urls = {homepage = "https://github.com/Terseus/python-io-chunks/"}
authors = [
{name = "David Caro", email = "[email protected]"}
]
license = {text = "MIT"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
]
dynamic = ["readme", "dependencies", "version"]
keywords = ["io", "library", "development"]
[tool.setuptools]
packages = ["io_chunks"]
# Taken from https://github.com/pypa/setuptools/blob/d138ec08efc2dbaebb8752e215e324f38bd807a2/setuptools/tests/config/test_pyprojecttoml.py#L68
[tool.setuptools.dynamic.readme]
file = ["README.md"]
content-type = "text/markdown"
[tool.setuptools_scm]
version_scheme = "post-release"
local_scheme = "no-local-version"
[tool.coverage.run]
branch = true
source = ["io_chunks/"]
[tool.coverage.report]
precision = 2
show_missing = true
[tool.isort]
profile = "black"
skip_gitignore = true
line_length = 88
[tool.mypy]
files = [
"io_chunks/",
"tests/",
]