-
-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathpyproject.toml
More file actions
59 lines (53 loc) · 1.77 KB
/
pyproject.toml
File metadata and controls
59 lines (53 loc) · 1.77 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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "flaredantic"
dynamic = ["version"]
description = "Create Cloudflare, Microsoft, and Serveo tunnels with ease."
readme = "README.md"
license = "Apache-2.0"
license-files = ["LICENSE"]
requires-python = ">=3.6"
authors = [
{ name = "linuztx", email = "linuztx@gmail.com" }
]
keywords = [
"cloudflare", "serveo", "microsoft", "tunnel",
"networking", "proxy", "localhost", "expose", "ngrok-alternative"
]
classifiers = [
"Development Status :: 4 - Beta",
"Environment :: Console",
"Operating System :: OS Independent",
"Intended Audience :: Information Technology",
"Intended Audience :: System Administrators",
"Intended Audience :: Developers",
"Topic :: Internet",
"Topic :: System :: Networking",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only",
"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.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
]
dependencies = [
"requests",
"tqdm",
]
[project.urls]
Homepage = "https://github.com/linuztx/flaredantic"
Repository = "https://github.com/linuztx/flaredantic"
Issues = "https://github.com/linuztx/flaredantic/issues"
[project.scripts]
flare = "flaredantic.cli:main"
[tool.setuptools.dynamic]
version = { attr = "flaredantic.__version__.__version__" }
[tool.setuptools.packages.find]
include = ["flaredantic*"]