forked from AlgTUDelft/pystreed
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpyproject.toml
More file actions
40 lines (36 loc) · 793 Bytes
/
pyproject.toml
File metadata and controls
40 lines (36 loc) · 793 Bytes
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
[build-system]
requires = [
"setuptools>=42",
"pybind11>=2.12.0"
]
build-backend = "setuptools.build_meta"
target-version = "py38"
[project]
name = "pysortd"
version = "0.0.1"
description = "Python Implementation of SORTD: Sorted Rashomon Sets of Trees using Dynamic Programming"
license= {file = "LICENSE"}
authors = [
]
maintainers = [
]
dependencies =[
"pandas>=1.0.0",
"numpy>=1.18.0",
"scikit-learn >=1.2.0",
"scikit-survival",
]
classifiers = [
"Programming Language :: Python :: 3",
"Operating System :: OS Independent", ]
[project.optional-dependencies]
dev = [
"pytest>=5.3.0",
"pytest-cov>=2.8.0",
]
[tool.pytest.ini_options]
pythonpath = [
"."
]
[tool.setuptools.packages]
find = {} # Scanning implicit namespaces is active by default