-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpyproject.toml
51 lines (44 loc) · 1.08 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
[tool.poetry]
name = "llvm-ir-dataset-utils"
description = "Infrastructure to build LLVM IR-based Datasets."
readme = "README.md"
authors = [
"Aiden Grossman <[email protected]>",
"Ludger Paehler <[email protected]>"
]
version = "0.2"
license = "Apache-2.0"
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Development Status :: 2 - Pre-Alpha",
"Intended Audience :: Science/Research",
]
include = [
{ path = "llvm_ir_dataset_utils" },
]
[tool.poetry.dependencies]
python = ">=3.9, <3.11"
ml-compiler-opt = "^0.0.1.dev202401270006"
absl-py = "^2.1.0"
ray = "^2.20.0"
toml = "^0.10.2"
pandas = "^2.2.2"
[tool.poetry.group.dev.dependencies]
yapf = "^0.40.2"
pytest = "^8.2.0"
ruff = "^0.4.3"
[tool.yapf]
based_on_style = "yapf"
indent_width = 2
[tool.ruff]
line-length = 120
[tool.ruff.lint]
select = ["E", "F"]
ignore = ["F401", "E731"]
[tool.codespell]
ignore-words-list = "crate,"
[build-system]
requires = ["poetry-core"]
build-backend = "poetry.core.masonry.api"