-
-
Notifications
You must be signed in to change notification settings - Fork 4
/
pyproject.toml
32 lines (29 loc) · 856 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
31
32
[build-system]
requires = ["setuptools>=42", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "py3xui"
version = "0.3.2"
description = "Sync and Async Object-oriented Python SDK for the 3x-ui app."
license = {text = "MIT License"}
readme = "README.md"
keywords = ["vpn", "3x-ui", "sdk", "api"]
classifiers = [
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
dependencies = [
"pydantic>=2.0.0",
"requests>=2.0.0",
"httpx>=0.20.0",
]
[project.urls]
Homepage = "https://github.com/iwatkot/py3xui"
Repository = "https://github.com/iwatkot/py3xui"
[tool.setuptools.packages.find]
where = ["."]
include = ["py3xui*"]
exclude = ["dev*"]