-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpyproject.toml
More file actions
92 lines (81 loc) · 3.38 KB
/
pyproject.toml
File metadata and controls
92 lines (81 loc) · 3.38 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
[build-system]
requires = ["setuptools>=45", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "python-script-runner"
version = "7.5.0"
description = "Production-grade Python script execution engine with comprehensive monitoring, alerting, analytics, and enterprise integrations"
readme = "README.md"
requires-python = ">=3.6"
license = {text = "MIT"}
authors = [
{name = "Python Script Runner Contributors"}
]
keywords = [
"python",
"script",
"runner",
"monitoring",
"alerting",
"analytics",
"performance",
"ci-cd"
]
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Software Development",
"Topic :: System :: Monitoring",
]
dependencies = [
"psutil>=5.9.0",
"pyyaml>=6.0",
"requests>=2.31.0",
]
[project.optional-dependencies]
dashboard = ["fastapi>=0.104.0", "uvicorn[standard]>=0.24.0", "websockets>=12.0", "httpx>=0.27.0"]
export = ["pyarrow>=13.0.0", "scikit-learn>=1.3.0"]
otel = ["opentelemetry-api>=1.20.0", "opentelemetry-sdk>=1.20.0", "opentelemetry-exporter-jaeger>=1.20.0", "opentelemetry-instrumentation>=0.41b0"]
security = ["bandit>=1.7.5", "semgrep>=1.45.0", "safety>=2.3.0", "detect-secrets>=1.4.0", "cyclonedx-python>=4.0.0"]
cloud = ["boto3>=1.28.0", "azure-identity>=1.13.0", "google-cloud-compute>=1.13.0", "google-cloud-monitoring>=2.15.0"]
vault = ["hvac>=1.2.0"]
all = ["fastapi>=0.104.0", "uvicorn[standard]>=0.24.0", "websockets>=12.0", "httpx>=0.27.0", "pyarrow>=13.0.0", "scikit-learn>=1.3.0", "opentelemetry-api>=1.20.0", "opentelemetry-sdk>=1.20.0", "opentelemetry-exporter-jaeger>=1.20.0", "opentelemetry-instrumentation>=0.41b0", "bandit>=1.7.5", "semgrep>=1.45.0", "safety>=2.3.0", "detect-secrets>=1.4.0", "cyclonedx-python>=4.0.0", "boto3>=1.28.0", "azure-identity>=1.13.0", "google-cloud-compute>=1.13.0", "google-cloud-monitoring>=2.15.0", "hvac>=1.2.0"]
dev = ["pytest>=7.0.0", "pytest-cov>=4.0.0", "black>=22.0.0", "flake8>=4.0.0", "mypy>=0.900"]
docs = ["mkdocs>=1.4.0", "mkdocs-material>=9.0.0"]
[project.urls]
Homepage = "https://github.com/jomardyan/Python-Script-Runner"
Documentation = "https://github.com/jomardyan/Python-Script-Runner#readme"
Repository = "https://github.com/jomardyan/Python-Script-Runner.git"
"Bug Tracker" = "https://github.com/jomardyan/Python-Script-Runner/issues"
[project.scripts]
python-script-runner = "runner:main"
[tool.setuptools]
py-modules = ["runner"]
[tool.setuptools.packages.find]
where = ["."]
include = ["runners*"]
[tool.setuptools.package-data]
"runners" = ["templates/**"]
[tool.black]
line-length = 120
target-version = ['py36', 'py37', 'py38', 'py39', 'py310', 'py311']
[tool.mypy]
python_version = "3.6"
warn_return_any = true
warn_unused_configs = true
disallow_untyped_defs = false
[tool.pytest.ini_options]
testpaths = ["."]
python_files = "test_*.py"
addopts = "-v --tb=short"