-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (43 loc) · 1.19 KB
/
pyproject.toml
File metadata and controls
46 lines (43 loc) · 1.19 KB
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
[build-system]
# Should be mirrored in requirements/build.txt
requires = [
"cmake>=3.26.1",
"ninja",
"pybind11 >= 2.13.1",
"torch>=2.4.0",
"packaging>=24.2",
"setuptools>=69.5.1,<80.0.0",
"setuptools-scm>=8.0",
"wheel",
]
build-backend = "setuptools.build_meta"
[project.scripts]
#mcoplib_init = "mcoplib:post_installation"
mcoplib_version = "mcoplib:get_version"
[project]
name = "mcoplib"
authors = [{name = "mcoplib metax Team"}]
license = { "file"= "LICENSE" }
readme = "README.md"
description = "op kernels for metax infer engine"
classifiers = [
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.10",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Science/Research",
"Topic :: Scientific/Engineering :: Artificial Intelligence",
"Topic :: Scientific/Engineering :: Information Analysis",
]
dependencies = [
"numpy>=1.24,<2.0",
"torch>=2.4.0",
"pyyaml",
"pydantic >= 2.10",
"numba >= 0.61.2",
"pybind11 >= 2.13.1",
"flashinfer >=0.2.6",
"triton >= 2.0.0"
]
requires-python = ">3.8,<3.13"
dynamic = [ "version", "optional-dependencies"]