-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
84 lines (72 loc) · 1.58 KB
/
Copy pathpyproject.toml
File metadata and controls
84 lines (72 loc) · 1.58 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
[build-system]
requires = ["setuptools>=61.0"]
build-backend = "setuptools.build_meta"
[project]
name = "proxy2vpn"
version = "0.18.0"
description = "Proxy2VPN Python utilities"
authors = [{ name = "Serhii Khalymon", email = "serhii.khalymon@pm.me" }]
readme = "README.md"
license = "MIT"
license-files = ["LICENSE"]
requires-python = ">=3.10"
keywords = ["vpn", "proxy", "utilities"]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"typer",
"ruamel.yaml==0.18.14",
"docker",
"requests",
"aiohttp",
"filelock",
"psutil",
"pydantic>=2",
"pydantic-settings",
"openai",
]
[tool.towncrier]
package = "proxy2vpn"
package_dir = "src"
filename = "CHANGELOG.md"
directory = "news"
start_string = "<!-- towncrier release notes start -->"
template = "towncrier:default.md"
title_format = "## [{version}]"
underlines = ["-", "~"]
[tool.towncrier.fragment.feature]
name = "Features"
showcontent = true
[tool.towncrier.fragment.bugfix]
name = "Bug fixes"
showcontent = true
[tool.towncrier.fragment.doc]
name = "Documentation"
showcontent = true
[tool.towncrier.fragment.removal]
name = "Removals"
showcontent = true
[tool.towncrier.fragment.misc]
name = "Miscellaneous"
showcontent = true
[project.scripts]
proxy2vpn = "proxy2vpn.cli:app"
[tool.setuptools.packages.find]
where = ["src"]
[tool.pyright]
include = ["src"]
exclude = [
"**/__pycache__",
"tests/",
"venv/"
]
[tool.ty.src]
include = ["src"]
[dependency-groups]
dev = [
"pytest>=8.4.1",
"towncrier",
"pytest-xdist"
]