-
Notifications
You must be signed in to change notification settings - Fork 11
/
pyproject.toml
30 lines (28 loc) · 901 Bytes
/
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
[build-system]
requires = ["flit_core >=2"]
build-backend = "flit_core.buildapi"
[tool.flit.metadata]
module = "socksio"
author = "Seth Michael Larson"
author-email = "[email protected]"
home-page = "https://github.com/sethmlarson/socksio"
requires-python=">=3.6"
description-file="README.md"
classifiers = [
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3 :: Only",
"Topic :: Internet :: Proxy Servers",
]
[tool.isort]
combine_as_imports = true
force_grid_wrap = 0
include_trailing_comma = true
known_first_party = "socksio,tests"
known_third_party = ["nox", "pytest", "socksio"]
line_length = 88
multi_line_output = 3