-
Notifications
You must be signed in to change notification settings - Fork 79
/
Copy pathpyproject.toml
52 lines (49 loc) · 1.27 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
45
46
47
48
49
50
51
52
[build-system]
requires = ["setuptools>=65", "wheel"]
build-backend = "setuptools.build_meta"
[project]
name = "DoubleML"
version = "0.10.dev0"
description = "Double Machine Learning in Python"
readme = {file = "README.md", content-type = "text/markdown"}
authors = [
{name = "Bach, P., Chernozhukov, V., Klaassen, S., Kurz, M. S., and Spindler, M."}
]
maintainers = [
{name = "Sven Klaassen", email = "[email protected]"}
]
requires-python = ">=3.9"
dependencies = [
"joblib",
"numpy",
"pandas",
"scipy",
"scikit-learn>=1.4.0,<1.6.0",
"statsmodels",
"matplotlib",
"plotly"
]
classifiers = [
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"License :: OSI Approved :: BSD License",
"Operating System :: OS Independent"
]
[project.optional-dependencies]
rdd = [
"rdrobust>=1.3.0"
]
dev = [
"pytest",
"xgboost",
"lightgbm",
"sphinx",
"pydata-sphinx-theme"
]
[project.urls]
Documentation = "https://docs.doubleml.org"
Source = "https://github.com/DoubleML/doubleml-for-py"
"Bug Tracker" = "https://github.com/DoubleML/doubleml-for-py/issues"