-
Notifications
You must be signed in to change notification settings - Fork 28
/
Copy pathpyproject.toml
71 lines (63 loc) · 2.19 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
[build-system]
requires = ["setuptools>=61.0.0", "wheel"]
build-backend = "setuptools.build_meta"
[tool.setuptools.packages.find]
where = ["python", 'reports']
include = ['pdstools*']
exclude = ['/tests/*', '*.dist-info', '/docs/*']
[tool.setuptools.package-data]
"*" = ['*.qmd']
[project]
name = "pdstools"
dynamic = ["version"]
description = "Open source tooling that helps Data Scientists to analyze Pega models and conduct impactful analyses."
readme = "README.md"
authors = [ { name = "Stijn Kas", email = "[email protected]" } ]
license = {text = "Apache-2.0"}
classifiers = [
"License :: OSI Approved :: Apache Software License",
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"Programming Language :: Python :: 3",
]
keywords = [
"pega",
"pegasystems",
"pdstools",
"datascientist",
"tools",
]
requires-python = ">=3.9"
dependencies = [
"polars>=0.20",
'typing_extensions',
]
[tool.setuptools.dynamic]
version = {attr="pdstools.__version__"}
[project.optional-dependencies]
adm = ['plotly', 'requests']
pega_io = ['aioboto3', 'polars_hash']
api = ['httpx', 'pydantic', 'anyio']
healthcheck = ['pdstools[adm]', 'great_tables>=0.13', 'quarto', 'papermill', 'xlsxwriter>=3.0', 'pydot']
app = ['pdstools[healthcheck]', 'streamlit>=1.23', 'st-pages']
onnx = [
'scikit-learn==1.5.1',
'skl2onnx==1.17.0',
'onnx==1.16.1',
'pdstools[api]',
"onnxruntime==1.18.1 ; python_full_version < '3.10'",
"onnxruntime==1.20.1 ; python_full_version >= '3.10'",
]
all = ['pdstools[app, pega_io, onnx]']
dev = ['pre-commit']
docs = ['sphinx','furo','sphinx-autoapi','nbsphinx','sphinx-copybutton','myst-parser', 'sphinx-argparse']
tests = ['testbook', 'pytest', 'pytest-cov', 'pytest-httpx', 'pytest-mock', 'moto', 'openpyxl', 'pdstools[all]', 'coverage']
[project.urls]
"Homepage" = "https://github.com/pegasystems/pega-datascientist-tools"
"Bug Tracker" = "https://github.com/pegasystems/pega-datascientist-tools/issues"
"Wiki" = "https://github.com/pegasystems/pega-datascientist-tools/wiki"
"Docs" = "https://pegasystems.github.io/pega-datascientist-tools/"
[project.scripts]
pdstools = 'pdstools.cli:main'
[tool.mypy]
mypy_path=['python/stubs']