-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
69 lines (63 loc) · 2.2 KB
/
pyproject.toml
File metadata and controls
69 lines (63 loc) · 2.2 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
[build-system]
requires = ["setuptools>=61.0", "requests>=2.32.3"]
build-backend = "setuptools.build_meta"
[project]
name = "coolipy"
version = "0.0.9"
authors = [
{ name="Gabriel Bocchini", email="gabrielbocchini@gmail.com" },
]
maintainers = [
{ name="Gabriel Bocchini", email="gabrielbocchini@gmail.com" },
]
description = "Coolipy - (Un)official Coolify - coolify.io - Python client!"
keywords = ["coolify", "rest client", "api client"]
readme = "README.md"
requires-python = ">=3.10"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
dependencies = [
"requests>=2.32.3"
]
[project.urls]
Homepage = "https://github.com/gbbocchini/coolipy"
Documentation = "https://coolipydocs.gabrielbocchini.com.br/"
Repository = "https://github.com/gbbocchini/coolipy"
[tool.setuptools]
packages = ["coolipy", "coolipy.models", "coolipy.services", "coolipy.services.coolify_api"]
[tool.setuptools.metadata]
name = "coolipy"
version = "0.0.9"
author = "Gabriel Bocchini"
author_email = "gabrielbocchini@gmail.com"
maintainer = "Gabriel Bocchini"
maintainer_email = "gabrielbocchini@gmail.com"
description = "Coolipy - (Un)official Coolify - coolify.io - Python client!"
long_description = "README.md"
long_description_content_type = "text/markdown"
url = "https://github.com/gbbocchini/coolipy"
project_urls = {
Homepage = "https://github.com/gbbocchini/coolipy",
Documentation = "https://coolipydocs.gabrielbocchini.com.br/",
Source = "https://github.com/gbbocchini/coolipy",
Tracker = "https://github.com/gbbocchini/coolipy/issues"
}
license = "Apache-2.0"
license_file = "LICENSE"
keywords = ["coolify", "rest client", "api client"]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Education",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.10",
"License :: OSI Approved :: Apache Software License",
"Operating System :: OS Independent",
]
requires_python = ">=3.10"