forked from rapidsai/legate-boost
-
Notifications
You must be signed in to change notification settings - Fork 0
/
pyproject.toml
100 lines (93 loc) · 2.25 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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
[build-system]
requires = [
"cmake>=3.24.0,!=3.30.0",
"legate-core==24.06.*,>=24.06.01",
"ninja>=1.11.1.1",
"scikit-build>=0.18.0",
"setuptools>=70.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
build-backend = "setuptools.build_meta"
[project]
name = "legate-boost"
dynamic = ["version"]
authors = [
{name = "NVIDIA Corporation"},
]
classifiers = [
"Intended Audience :: Developers",
"Topic :: Scientific/Engineering",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
]
dependencies = [
"cunumeric==24.06.*,>=24.06.01",
"legate-core==24.06.*,>=24.06.01",
"numpy",
"scikit-learn",
"typing-extensions>=4.0",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
description = "GBM libary on Legate"
license = {text = "Apache 2.0"}
requires-python = ">=3.10"
[project.optional-dependencies]
test = [
"hypothesis",
"matplotlib",
"mypy",
"nbconvert",
"notebook",
"pytest<8",
"seaborn",
"xgboost",
] # This list was generated by `rapids-dependency-file-generator`. To make changes, edit dependencies.yaml and run `rapids-dependency-file-generator`.
[tool.setuptools.dynamic]
version = {file = "legateboost/VERSION"}
[tool.mypy]
disallow_untyped_defs = true
follow_imports = "skip"
ignore_missing_imports = true
[tool.isort]
line_length = 88
multi_line_output = 3
include_trailing_comma = true
force_grid_wrap = 0
combine_as_imports = true
order_by_type = true
known_third_party = [
"numpy"
]
known_legion = [
"legion_cffi",
"legion_top"
]
known_first_party = [
"legate",
"lllm",
"cunumeric"
]
default_section = "THIRDPARTY"
sections = [
"FUTURE",
"STDLIB",
"THIRDPARTY",
"LEGION",
"FIRSTPARTY",
"LOCALFOLDER"
]
skip = [
".eggs",
".git",
".mypy_cache",
".tox",
".venv",
"_build",
"build",
"dist",
"legion",
]
skip_glob = [
"**/__init__.py"
]