Skip to content

Commit

Permalink
Change setup.cfg to pyproject.toml
Browse files Browse the repository at this point in the history
  • Loading branch information
EltonCN committed Oct 18, 2024
1 parent e73489a commit ddfbc1b
Show file tree
Hide file tree
Showing 2 changed files with 37 additions and 37 deletions.
41 changes: 37 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,39 @@
[build-system]
requires = [
"setuptools>=42",
"wheel"
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"

[project]
name = "cst_python"
version = "0.1.0"
authors = [{name = "H.IAAC", email = "[email protected]"}]
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)",
]
build-backend = "setuptools.build_meta"

[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"]

[tool.setuptools]
include-package-data = true
package-dir = {"" = "src"}
# install_requires =
# numpy

[tool.setuptools.packages.find]
where = ["src"]
namespaces = false
33 changes: 0 additions & 33 deletions setup.cfg

This file was deleted.

0 comments on commit ddfbc1b

Please sign in to comment.