|
1 | 1 | [build-system] |
2 | | -requires = ["setuptools"] |
| 2 | +requires = ["setuptools>=42"] |
3 | 3 | build-backend = "setuptools.build_meta" |
4 | 4 |
|
| 5 | +[project] |
| 6 | +name = "xcsf" |
| 7 | +version = "1.4.7" |
| 8 | +description = "XCSF learning classifier system: rule-based evolutionary machine learning" |
| 9 | +readme = "README.md" |
| 10 | +requires-python = ">=3.9" |
| 11 | +license = {text = "GPL-3.0"} |
| 12 | +maintainers = [ |
| 13 | + { name = "Richard Preen", email = "[email protected]"} |
| 14 | +] |
| 15 | +keywords = [ |
| 16 | + "divide and conquer", |
| 17 | + "evolutionary algorithm", |
| 18 | + "genetic programming", |
| 19 | + "learning classifier system", |
| 20 | + "least squares", |
| 21 | + "machine learning", |
| 22 | + "neural networks", |
| 23 | + "neuroevolution", |
| 24 | + "reinforcement learning", |
| 25 | + "rule-based", |
| 26 | + "supervised learning", |
| 27 | + "stochastic gradient descent", |
| 28 | + "XCS", |
| 29 | + "XCSF ", |
| 30 | +] |
| 31 | +classifiers = [ |
| 32 | + "Development Status :: 5 - Production/Stable", |
| 33 | + "Intended Audience :: Developers", |
| 34 | + "Intended Audience :: Science/Research", |
| 35 | + "License :: OSI Approved :: GNU General Public License v3 (GPLv3)", |
| 36 | + "Programming Language :: C", |
| 37 | + "Programming Language :: C++", |
| 38 | + "Programming Language :: Python :: 3.9", |
| 39 | + "Programming Language :: Python :: 3.10", |
| 40 | + "Programming Language :: Python :: 3.11", |
| 41 | + "Programming Language :: Python :: 3.12", |
| 42 | + "Programming Language :: Python :: 3.13", |
| 43 | + "Topic :: Scientific/Engineering", |
| 44 | + "Topic :: Scientific/Engineering :: Artificial Intelligence", |
| 45 | + "Operating System :: POSIX :: Linux", |
| 46 | + "Operating System :: MacOS :: MacOS X", |
| 47 | + "Operating System :: Microsoft :: Windows :: Windows 10", |
| 48 | + "Operating System :: Microsoft :: Windows :: Windows 11 ]", |
| 49 | +] |
| 50 | + |
| 51 | +[project.urls] |
| 52 | +"Homepage" = "https://github.com/xcsf-dev/xcsf" |
| 53 | +"Changelog" = "https://github.com/xcsf-dev/xcsf/CHANGELOG.md" |
| 54 | +"Documentation" = "https://github.com/xcsf-dev/xcsf/wiki" |
| 55 | +"Bug Tracker" = "https://github.com/xcsf-dev/xcsf/issues" |
| 56 | +"Discussions" = "https://github.com/xcsf-dev/xcsf/discussions" |
| 57 | + |
| 58 | +[tool.setuptools] |
| 59 | +zip-safe = false |
| 60 | +include-package-data = true |
| 61 | +packages = {find = {exclude = ["build*", "cfg*", "doc*", "python*", "test*"]}} |
| 62 | + |
5 | 63 | [tool.ruff] |
6 | 64 | indent-width = 4 |
7 | 65 | line-length = 88 |
|
0 commit comments