17 lines
359 B
TOML
17 lines
359 B
TOML
[build-system]
|
|
requires = ["setuptools>=61.0.0"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[project]
|
|
name = "xray-manager"
|
|
version = "0.2"
|
|
description = "Utility for managing Xray configuration and user profiles"
|
|
dependencies = [
|
|
"cryptography>=43.0.0",
|
|
"qrcode>=8.2",
|
|
"tabulate>=0.9.0",
|
|
]
|
|
|
|
[project.scripts]
|
|
xray-manager = "xray_manager.cli:main"
|