-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathpyproject.toml
43 lines (41 loc) · 1.31 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
[build-system]
requires = [
"setuptools>=42",
"wheel",
"ninja",
"cmake>=3.12",
"numpy",
"pandas",
"scipy",
"scikit-learn"
]
build-backend = "setuptools.build_meta"
[project]
name = "stochtree"
version = "0.1.0"
dynamic = ["readme", "optional-dependencies", "license"]
description = "Stochastic Tree Ensembles for Machine Learning and Causal Inference"
requires-python = ">=3.8.0"
classifiers = [
"Development Status :: 3 - Alpha",
"Intended Audience :: Science/Research",
"License :: OSI Approved :: MIT License",
"Operating System :: MacOS",
"Operating System :: Microsoft :: Windows",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Topic :: Scientific/Engineering :: Artificial Intelligence"
]
authors = [
{name = "Drew Herren", email = "drewherrenopensource@gmail.com"}
]
[project.urls]
Homepage = "https://stochtree.ai/"
Documentation = "https://stochtree.ai/python_docs/index.html"
Repository = "https://github.com/StochasticTree/stochtree"
Issues = "https://github.com/StochasticTree/stochtree/issues"