-
Notifications
You must be signed in to change notification settings - Fork 32
Expand file tree
/
Copy pathpyproject.toml
More file actions
33 lines (28 loc) · 1020 Bytes
/
pyproject.toml
File metadata and controls
33 lines (28 loc) · 1020 Bytes
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
[build-system]
requires = ["setuptools>=61.0", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = 'promoai'
description = "ProMoAI: Process Modeling with Generative AI"
readme = "README.md"
requires-python = ">=3.10"
license = { file = "LICENSE.txt" }
authors = [
{ name = "Humam Kourani", email = "humam.kourani@fit.fraunhofer.de" },
{ name = "Anton Antonov", email = "anton.antonov@fit.fraunhofer.de" }
]
keywords = ["process modeling", "business process management", "generative AI"]
classifiers = [
"Development Status :: 4 - Beta",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)",
"Programming Language :: Python :: 3.10"
]
dynamic = ["version", "dependencies"]
[project.urls]
"Repository" = "https://github.com/fit-process-mining/ProMoAI"
[tool.setuptools.packages.find]
include = ["promoai*"]
[tool.setuptools.dynamic]
dependencies = { file = ["requirements.txt"] }
version = { attr = "promoai.__version__" }