-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
72 lines (64 loc) · 1.61 KB
/
Copy pathpyproject.toml
File metadata and controls
72 lines (64 loc) · 1.61 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
[project]
name = "cm-proxy"
dynamic = ["version"]
description = "A cheap, secure, and straightforward serverless localhost proxy"
readme = "README.rst"
requires-python = ">=3.12"
license = "MIT"
license-files = ["LICENSE.txt", "AUTHORS.rst"]
dependencies = [
"boto3>=1.40.23",
"mitmproxy>=12.2.0",
"requests>=2.32.5",
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
"Topic :: Internet :: Proxy Servers",
]
authors = [
{name="Aryeh Leib Taurog"},
]
[project.urls]
documentation = "https://cm-proxy.readthedocs.io"
repository = "https://github.com/causematch/cm-proxy"
issues = "https://github.com/causematch/cm-proxy/issues"
[project.scripts]
cm-proxy = "cm_proxy.proxy:entrypoint"
[build-system]
requires = ["flit_core >=3.11,<5"]
build-backend = "flit_core.buildapi"
[dependency-groups]
dev = [
"black>=25.1.0",
"cfn-lsp-extra>=0.7.5",
"httpie>=3.2.4",
"ipython>=9.5.0",
"isort>=6.0.1",
"pylint>=3.3.8",
"pytest>=8.4.1",
"python-lsp-server>=1.14.0",
]
docs = [
"sphinx>=9.0.4",
"sphinxcontrib-autoprogram~=0.1.9",
]
[tool.pylint.main]
jobs = 2
[tool.pylint.format]
indent-after-paren = 2
[tool.pylint."messages control"]
disable = [
"too-few-public-methods",
"invalid-name",
"inconsistent-return-statements",
"missing-module-docstring",
"missing-class-docstring",
"missing-function-docstring",
"unnecessary-lambda-assignment",
]
[tool.pylint.miscellaneous]
notes = ["FIXME", "XXX", "DEBUG"]