-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
52 lines (44 loc) · 1.39 KB
/
pyproject.toml
File metadata and controls
52 lines (44 loc) · 1.39 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
[build-system]
requires = ["flit_core >=2,<4"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "archive_path"
dist-name = "archive-path"
author = "Chris Sewell"
author-email = "executablebooks@gmail.com"
description-file = "README.md"
home-page = "https://github.com/aiidateam/archive-path"
classifiers = [
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Topic :: Software Development :: Libraries :: Python Modules",
]
keywords = "archive zip tar pathlib"
requires-python=">=3.8"
[tool.flit.metadata.requires-extra]
test = [
"pytest~=6.0",
"coverage",
"pytest-cov",
]
dev = ["pre-commit"]
[tool.flit.sdist]
include = ["LICENSE", "README.md", "CHANGELOG.md"]
exclude = [".github/", "tests/"]
[tool.isort]
# Force imports to be sorted by module, independent of import type
force_sort_within_sections = true
# Group first party and local folder imports together
no_lines_before = ["LOCALFOLDER"]
# Configure isort to work without access to site-packages
known_first_party = ["archive_path", "tests"]
# Settings for Black compatibility
profile = "black"
[tool.mypy]
show_error_codes = true
check_untyped_defs = true