-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
47 lines (40 loc) · 1.4 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
[build-system]
requires = ["setuptools>=61.2", "setuptools_scm>=8"]
build-backend = "setuptools.build_meta"
[project]
name = "cst_python"
authors = [{name = "H.IAAC", email = "hiaac@unicamp.br"}]
description = "Python module of the CST, the Cognitive Systems Toolkit, a toolkit for the construction of cognitive systems and cognitive architectures."
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent",
"Topic :: Scientific/Engineering",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)",
]
requires-python = ">= 3.10"
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown"
[project.urls]
Homepage = "https://hiaac.unicamp.br"
"Bug Tracker" = "https://github.com/H-IAAC/CST-Python/issues"
# Documentation =
[project.optional-dependencies]
tests = ["mypy", "testbook", "ipython", "ipykernel", "numpy", "matplotlib", "types-redis"]
doc_generation = ["sphinx", "sphinx_rtd_theme", "nbsphinx", "sphinx-mdinclude==0.5.4"]
dev = ["cffconvert"]
gym = ["gymnasium"]
memory_storage = ["redis"]
[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
license-files = ["LICENSE"]
# install_requires =
# numpy
[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
[tool.setuptools_scm]