-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
37 lines (35 loc) · 927 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
33
34
35
36
37
[project]
name = "funix-cloud"
version = "0.1.2"
authors = [
{ name = "Textea Inc.", email = "[email protected]" }
]
description = "Funix cloud tool"
readme = "README.md"
requires-python = ">=3.10"
keywords = ["funix", "cloud"]
license = { file = "LICENSE" }
classifiers = [
"Development Status :: 3 - Alpha",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3.10",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.31.0",
"fire>=0.5.0",
"rich>=13.5.2",
"qrcode>=7.4.2",
"python-dateutil>=2.8.2",
"tzlocal>=5.2",
"tomlkit>=0.12.0",
"python-dotenv>=1.0.1",
]
[project.urls]
homepage = "https://github.com/TexteaInc/funix-cloud"
[project.scripts]
funix-cloud = "funix_cloud.__init__:start"
lmkc = "funix_cloud.key:__main__"