-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathpyproject.toml
57 lines (49 loc) · 1.63 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
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "peak-mas"
version = "1.0.9"
description = "Python-based framework for heterogeneous agent communities"
readme = "README.md"
authors = [{ name = "Bruno Ribeiro", email = "[email protected]" }]
classifiers = [
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Environment :: Console",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
keywords = ["framework", "multiagent", "agent-based", "ecosystem", "spade", "xmpp"]
dependencies = [
"aiohttp_cors",
"aioxmpp",
"pandas",
"spade >= 3.2.2",
"PyYAML"
]
requires-python = "==3.9.6"
[project.optional-dependencies]
build = ["build", "twine"]
dev = ["black", "isort", "mypy", "bumpver", "pipreqs", "autoflake"]
[project.urls]
Homepage = "https://www.gecad.isep.ipp.pt/peak"
Github = "https://github.com/gecad-group/peak-mas"
[project.scripts]
peak = "peak.__main__:main"
[tool.bumpver]
current_version = "1.0.9"
version_pattern = "MAJOR.MINOR.PATCH"
commit_message = "chore: bump version {old_version} -> {new_version}"
commit = true
tag = true
push = false
[tool.bumpver.file_patterns]
"pyproject.toml" = ['current_version = "{version}"', 'version = "{version}"']
"src/peak/__init__.py" = ["{version}"]
[tool.isort]
profile = "black"