-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
93 lines (86 loc) · 2.04 KB
/
Copy pathpyproject.toml
File metadata and controls
93 lines (86 loc) · 2.04 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
[build-system]
requires = ["setuptools>=61.0.0"]
build-backend = "setuptools.build_meta"
[project]
name = "aloha"
dynamic = ["version"]
description = "Aloha - a versatile Python utility package for building services"
readme = "README.md"
requires-python = ">=3.10"
license = {text = "Apache-2.0"}
authors = [
{name = "LabNow.ai", email = "postmaster@labnow.ai"}
]
classifiers = [
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"Intended Audience :: Science/Research",
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
]
dependencies = [
"attrdict3",
"pyhocon",
"pycryptodome",
"packaging",
]
[project.urls]
Homepage = "https://github.com/LabNow.ai/aloha-python"
Source = "https://github.com/LabNow-ai/aloha-python"
"CI Pipeline" = "https://github.com/LabNow-ai/aloha-python/actions"
Documentation = "https://aloha-python.readthedocs.io/"
[project.scripts]
aloha = "aloha.script.base:main"
[project.optional-dependencies]
build = ["Cython"]
service = ["psutil", "pyjwt", "fastapi", "httpx", "uvicorn"]
db = [
"sqlalchemy",
"psycopg[binary]",
"pymysql",
"elasticsearch",
"pymongo",
"redis",
"duckdb",
"duckdb-engine",
"oracledb",
]
stream = ["confluent_kafka"]
data = ["pandas", "lxml"]
report = ["openpyxl", "XlsxWriter"]
test = ["pytest-cov"]
docs = ["mkdocs", "mkdocstrings[python]", "markdown-include", "mkdocs-material"]
all = [
"Cython",
"psutil",
"pyjwt",
"fastapi",
"httpx",
"uvicorn",
"sqlalchemy",
"psycopg[binary]",
"pymysql",
"elasticsearch",
"pymongo",
"redis",
"duckdb",
"duckdb-engine",
"oracledb",
"confluent_kafka",
"pandas",
"lxml",
"openpyxl",
"XlsxWriter",
"pytest-cov",
"mkdocs",
"mkdocstrings[python]",
"markdown-include",
"mkdocs-material"
]
[tool.setuptools]
include-package-data = true
zip-safe = false
[tool.setuptools.packages.find]
where = ["."]
[tool.setuptools.dynamic]
version = {attr = "aloha._version.__version__"}