-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathpyproject.toml
More file actions
42 lines (38 loc) · 1.2 KB
/
pyproject.toml
File metadata and controls
42 lines (38 loc) · 1.2 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
[build-system]
requires = [
"setuptools>=42, <72.2.0",
"pybind11>=2.12.0"
]
build-backend = "setuptools.build_meta"
[project]
name = "pycontree"
version = "1.0.7"
requires-python = ">=3.10"
description = "Python Wrapper ConTree: Optimal Decision Trees for Continuous Feature Data"
license= {file = "LICENSE"}
readme = "README.md"
authors = [
{name = "Cătălin E. Briţa", email="C.E.Brita@student.tudelft.nl"},
{name = "Jacobus G. M. van der Linden", email="J.G.M.vanderLinden@tudelft.nl"},
{name = "Emir Demirović", email="E.Demirovic@tudelft.nl"}
]
maintainers = [
{name = "Cătălin E. Briţa", email="C.E.Brita@student.tudelft.nl"},
{name = "Jacobus G. M. van der Linden", email="J.G.M.vanderLinden@tudelft.nl"}
]
dependencies =[
"pandas>=1.0.0",
"numpy>=1.18.0",
"scikit-learn >=1.6.0",
"typing_extensions>=4.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", ]
[tool.setuptools.packages.find]
where = ["python"]
include = ["pycontree*"]
exclude = ["datasets*", "train-datasets*", "examples*"]
[project.urls]
Repository = "https://github.com/consol-lab/contree"