-
Notifications
You must be signed in to change notification settings - Fork 1
/
pyproject.toml
54 lines (49 loc) · 1.26 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
54
[build-system]
requires = ["setuptools"]
build-backend = "setuptools.build_meta"
[project]
name = "pyproxy"
authors = [
{ name = "Bruno Kraychete da Costa", email = "[email protected]" },
]
description = "A simple programmatic HTTP proxy"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.9",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dynamic = ["version", "readme", "dependencies"]
[tool.setuptools.dynamic]
version = { attr = "pyproxy.__version__" }
readme = { file = ["README.md"] }
dependencies = { file = ["requirements.txt"] }
[tool.setuptools.package-data]
pyproxy = ["py.typed"]
[tool.pytest.ini_options]
log_cli = true
log_level = "DEBUG"
asyncio_mode = "auto"
#testpaths = [
# "tests",
#]
#addopts = [
# "--import-mode=importlib",
#]
[tool.isort]
# https://github.com/PyCQA/isort/wiki/isort-Settings
profile = "black"
src_paths = ["pyproxy", "tests"]
# will group `import x` and `from x import` of the same module.
force_sort_within_sections = true
skip_gitignore = true
known_first_party = [
"pyproxy",
"tests",
]
#forced_separate = [
# "tests",
#]
combine_as_imports = true
skip = [".gitignore", ".dockerignore"]