-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpyproject.toml
99 lines (82 loc) · 2.32 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
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
94
95
96
97
98
99
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[tool.hatch.build.targets.wheel]
packages = ["src/aurorastack"]
[project]
name = "aurorastack-core"
version = "0.0.1"
requires-python = ">=3.8"
authors = [
]
maintainers = [
]
description = "MSA framework with kubernetes"
readme = "README.md"
license = {file = "LICENSE"}
keywords = ["MSA", "gRPC", "kubernetes", "fastapi", "scheduler", "worker"]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]
dependencies = [
# grpc packages
'protobuf==3.*',
# 'grpcio',
'grpcio-reflection',
'google-api-core',
'grpcio-health-checking',
# fastapi packages
'fastapi',
'fastapi-utils',
'uvicorn',
# asyncio packages
'asyncio',
# data parser packages
'PyYAML',
'jsonschema',
# scheduler packages
'schedule',
'scheduler-cron',
# cache packages
'redis',
'cachetools',
# crypto(jwt) packages
'pycryptodome',
'jwcrypto',
'python-jose',
# utils packages
'python-dateutil',
'python-consul',
'dnspython',
# HTTP packages
'requests',
# CLI packages
'click',
# model packages
'pydantic',
'mongoengine',
# test framework packages
'unittest-xml-reporting',
'factory-boy',
'mongomock',
# tracing packages
'opentelemetry-api',
'opentelemetry-sdk',
'opentelemetry-exporter-otlp-proto-grpc',
'opentelemetry-instrumentation-logging',
'opentelemetry-exporter-prometheus'
]
[project.urls]
Homepage = "https://aurorastack.io"
Documentation = "https://aurorastack.io"
Repository = "https://github.com/aurorastack/aurorastack-core.git"
"Bug Tracker" = "https://github.com/aurorastack/issues"
Changelog = "https://github.com/aurorastack/aurorastack-core/blob/master/CHANGELOG.md"
[project.scripts]
aurorastack = "aurorastack.core.command:cli"