-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
44 lines (39 loc) · 1.14 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
[build-system]
requires = [
"setuptools>=42",
"pybind11>=2.12.0"
]
build-backend = "setuptools.build_meta"
target-version = "py38"
[project]
name = "pycontree"
version = "1.0"
description = "Python Wrapper ConTree: Optimal Decision Trees for Continuous Feature Data"
license= {file = "LICENSE"}
authors = [
{name = "Cătălin E. Briţa", email="[email protected]"},
{name = "Jacobus G. M. van der Linden", email="[email protected]"},
{name = "Emir Demirović", email="[email protected]"}
]
maintainers = [
{name = "Cătălin E. Briţa", email="[email protected]"},
{name = "Jacobus G. M. van der Linden", email="[email protected]"}
]
dependencies =[
"pandas>=1.0.0",
"numpy>=1.18.0",
"scikit-learn >=1.2.0",
"typing_extensions>=4.0.0"
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent", ]
[project.optional-dependencies]
dev = []
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default