-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
46 lines (42 loc) · 1.13 KB
/
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
38
39
40
41
42
43
44
45
46
[project]
name = "cloudnode"
version = "2024.09.1"
authors = [
{ name="Starlight", email="david@starlight.ai" },
]
maintainers = [
{ name="Starlight", email="david@starlight.ai" },
]
description = "cloudnode is for building apps on home servers."
readme = "README.md"
requires-python = ">=3.8"
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
]
keywords = ["cloudnode", "infrastructure", "engineering", "search", "home", "machine learning"]
dependencies = [
"python-magic",
"dateparser",
"pyyaml",
"elasticsearch",
"elasticsearch-dsl",
"pandas",
"docker",
"flask",
"flask-RESTful",
"flask_cors",
"requests",
"shiny",
]
[project.urls]
Homepage = "https://github.com/markelwin/CloudNode"
Repository = "https://github.com/markelwin/CloudNode.git"
Issues = "https://github.com/markelwin/CloudNode/issues"
[build-system]
requires = ["setuptools >= 61.0"]
build-backend = "setuptools.build_meta"
[tool.pytest.ini_options]
testpaths = ["tests"]