-
Notifications
You must be signed in to change notification settings - Fork 322
Expand file tree
/
Copy pathpyproject.toml
More file actions
44 lines (41 loc) · 1.29 KB
/
pyproject.toml
File metadata and controls
44 lines (41 loc) · 1.29 KB
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
[project]
name = "gplearn"
dynamic = ["version"]
authors = [
{ name="Trevor Stephens", email="[email protected]" },
]
description = "Genetic Programming in Python, with a scikit-learn inspired API"
readme = "README.rst"
requires-python = ">=3.11"
dependencies = [
"scikit-learn>=1.8.0",
"joblib>=1.3.0"
]
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"Intended Audience :: Developers",
"License :: OSI Approved",
"Topic :: Software Development",
"Topic :: Scientific/Engineering",
"Operating System :: Microsoft :: Windows",
"Operating System :: Unix",
"Operating System :: MacOS",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python :: 3.14"
]
license = "BSD-3-Clause"
license-files = ["LICENSE"]
[project.urls]
homepage = "https://gplearn.readthedocs.io/en/stable/"
source = "https://github.com/trevorstephens/gplearn"
tracker = "https://github.com/trevorstephens/gplearn/issues"
[build-system]
requires = ["hatchling >= 1.26"]
build-backend = "hatchling.build"
[tool.hatch.version]
path = "gplearn/__init__.py"