-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpyproject.toml
53 lines (45 loc) · 1.13 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
[build-system]
requires = ["setuptools", "setuptools-scm"]
build-backend = "setuptools.build_meta"
[tool.setuptools]
include-package-data = false
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"*" = ["*.t", "*.c", "*.h", "Makefile", "*.json"]
[project]
name = "treeco"
version = "0.1"
authors = [
{ name="Francesco Daghero", email="[email protected]" },
]
description = "Treeco: Tree compilation for efficient inference"
readme = "README.md"
license = { file="LICENSE" }
requires-python = ">=3.10"
classifiers = [
"Programming Language :: Python :: 3",
]
dependencies = [
"numpy",
"scikit-learn",
"bigtree",
"matplotlib",
"xdsl",
"skl2onnx==1.17.0",
"onnxmltools==1.12.0"
]
[project.optional-dependencies]
c_formatter = ["clang-format"]
development = ["black"]
[tool.pytest.ini_options]
minversion = "6.0"
addopts = "-ra -q"
testpaths = ["tests"]
[project.urls]
"Homepage" = "https://github.com/francescodaghero/treeco"
"Bug Tracker" = "https://github.com/francescodaghero/treeco/issues"
[tool.flake8]
max-line-length = 88
per-file-ignores="__init__.py:F401"
extend-ignore = "E203,"