-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpyproject.toml
More file actions
103 lines (91 loc) · 2.46 KB
/
pyproject.toml
File metadata and controls
103 lines (91 loc) · 2.46 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
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
[build-system]
requires = [
"setuptools>=61.0", # Needed for setuptools-scm support
"setuptools-scm>8",
]
build-backend = "setuptools.build_meta"
[project]
name = "configurable-http-proxy"
dynamic = ["version"]
description = "A python implementation of configurable-http-proxy"
readme = "README.md"
license = "Apache-2.0"
authors = [
{name = "Corridor Platforms", email = "postmaster@corridorplatforms.com"}
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Internet :: Proxy Servers",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
]
requires-python = ">=3.8"
dependencies = [
"tornado",
"click",
"python-dateutil",
]
[project.optional-dependencies]
sql = ["dataset"]
[project.urls]
Homepage = "https://github.com/corridor/configurable-http-proxy"
Repository = "https://github.com/corridor/configurable-http-proxy"
[project.scripts]
configurable-http-proxy = "configurable_http_proxy.cli:main"
[tool.setuptools]
packages = ["configurable_http_proxy"]
include-package-data = true
zip-safe = false
[tool.setuptools.package-data]
configurable_http_proxy = ["*"]
[tool.setuptools_scm]
[tool.ruff]
line-length = 110
output-format = "grouped"
target-version = "py37"
[tool.ruff.lint]
select = [
"A", # flake8-builtins
"B", # flake8-bugbear
"C4", # flake8-comprehensions
"E", # pycodestyle - errors
"EXE", # flake8-executable
"F", # pyflakes
"FA", # flake8-future-annotations
"FLY", # flynt
"I", # isort
"ICN", # flake8-import-conventions
"ISC", # flake8-implicit-str-concat
"LOG", # flake8-logging
"N", # pep8-naming
"NPY", # numpy-specific rules
"PD", # pandas-vet
"PERF", # perflint
"PIE", # flake8-pie
"PGH", # pygrep-hooks
"PLC", # pylint-convention
"PLE", # pylint-error
"PYI024", # flake8-pyi
"Q", # flake8-quotes
"RSE", # flake8-raise
"RUF", # ruff specific rules
"SLOT", # flake8-slots
"T10", # flake8-debugger
"TCH", # flake8-type-checking
"TID", # flake8-tidy-imports
"W", # pycodestyle - warnings
"YTT", # flake8-2020
]
[tool.pytest.ini_options]
testpaths = ["configurable_http_proxy_test"]
[tool.coverage.run]
branch = true
cover_pylib = false
source = ["."]
include = ["configurable_http_proxy/*"]
[tool.coverage.report]
show_missing = true
skip_covered = false
sort = "Miss"
include = ["configurable_http_proxy/*"]