69 lines
2.1 KiB
TOML
69 lines
2.1 KiB
TOML
# Split Miner - BPMN process discovery from event logs.
|
|
# Authors:
|
|
# imacat@mail.imacat.idv.tw (imacat), 2026/3/10
|
|
# AI assistance: Claude Code (Anthropic)
|
|
|
|
# Copyright (c) 2026 imacat.
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License");
|
|
# you may not use this file except in compliance with the License.
|
|
# You may obtain a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS,
|
|
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
# See the License for the specific language governing permissions and
|
|
# limitations under the License.
|
|
|
|
[project]
|
|
name = "split-miner"
|
|
dynamic = ["version"]
|
|
description = "Split Miner algorithm for BPMN process discovery from event logs"
|
|
readme = "README.rst"
|
|
requires-python = ">=3.10"
|
|
license = { text = "Apache-2.0" }
|
|
authors = [
|
|
{ name = "imacat", email = "imacat@mail.imacat.idv.tw" },
|
|
]
|
|
dependencies = [
|
|
"networkx",
|
|
"spqrtree",
|
|
]
|
|
keywords = [
|
|
"bpmn",
|
|
"process-mining",
|
|
"process-discovery",
|
|
"split-miner",
|
|
"event-log",
|
|
"workflow",
|
|
]
|
|
classifiers = [
|
|
"Development Status :: 1 - Planning",
|
|
"Intended Audience :: Developers",
|
|
"Intended Audience :: Science/Research",
|
|
"License :: OSI Approved :: Apache Software License",
|
|
"Operating System :: OS Independent",
|
|
"Programming Language :: Python :: 3",
|
|
"Programming Language :: Python :: 3.10",
|
|
"Programming Language :: Python :: 3.11",
|
|
"Programming Language :: Python :: 3.12",
|
|
"Programming Language :: Python :: 3.13",
|
|
"Topic :: Scientific/Engineering",
|
|
"Topic :: Software Development :: Libraries :: Python Modules",
|
|
"Typing :: Typed",
|
|
]
|
|
|
|
[project.urls]
|
|
Homepage = "https://github.com/imacat/split-miner"
|
|
Repository = "https://github.com/imacat/split-miner"
|
|
"Bug Tracker" = "https://github.com/imacat/split-miner/issues"
|
|
|
|
[build-system]
|
|
requires = ["setuptools>=61"]
|
|
build-backend = "setuptools.build_meta"
|
|
|
|
[tool.setuptools.dynamic]
|
|
version = {attr = "split_miner.VERSION"}
|