forked from PriorLabs/TabPFN
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
50 lines (46 loc) · 1.21 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
[build-system]
requires = ["hatchling"]
build-backend = "hatchling.build"
[project]
name = "tabpfn"
version = "0.1.9"
authors = [
{name="Noah Hollmann"},
{name="Samuel Muller", email="muellesa@tf.uni-freiburg.de"},
{name="Katharina Eggensperger"},
{name="Frank Hutter"},
]
description = "Interface for using TabPFN and library to train TabPFN'"
readme = "README.md"
requires-python = ">=3.7"
dependencies=[
'torch>=1.9.0',
'scikit-learn>=0.24.2',
'pyyaml>=5.4.1',
'numpy>=1.21.2',
'requests>=2.23.0',
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
]
[tool.hatch.build]
exclude = [
"*.cpkt",
"tabpfn/datasets/*.pickle",
]
[project.optional-dependencies]
full = [
'gpytorch>=1.5.0', # training
'catboost>=0.26.1', # baselines
'auto-sklearn>=0.14.5', # baselines
'xgboost>=1.4.0', # baselines
'hyperopt>=0.2.5', # baselines
'configspace>=0.4.21', # baselins + training + evaluation
'openml>=0.12.2', # evaluation + baselines
'seaborn==0.11', # evaluation
'tqdm>=4.62.1', # training + evaluation
]
[project.urls]
"Homepage" = "https://github.com/automl/TabPFN'"