-
Notifications
You must be signed in to change notification settings - Fork 85
/
Copy pathpyproject.toml
55 lines (47 loc) · 1.32 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
[build-system]
requires = ["setuptools>=64.0", "scikit-build-core>=0.11"]
build-backend = "scikit_build_core.build"
[project]
name = "flag_gems"
version = "2.2"
description = "FlagGems is a function library written in Triton."
readme = { file = "README.md", content-type = "text/markdown" }
requires-python = ">=3.8.0"
license = { text = "Apache Software License" }
authors = [
{ name = "Zhixin Li", email = "[email protected]" },
{ name = "Tongxin Bai", email = "[email protected]" },
{ name = "Yuming Huang", email = "[email protected]" },
{ name = "Feiyu Chen", email = "[email protected]" },
]
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"torch>=2.2.0",
"PyYAML",
]
[project.optional-dependencies]
test = [
"pytest>=7.1.0",
"numpy>=1.26",
"scipy>=1.14",
]
example = [
"transformers>=4.40.2",
]
[project.urls]
Homepage = "https://github.com/FlagOpen/FlagGems"
[tool.setuptools]
package-dir = { "" = "src" }
[tool.setuptools.packages.find]
where = ["src"]
[tool.setuptools.package-data]
"flag_gems.runtime" = ["*/**/*.yaml"]
[tool.scikit-build]
build.verbose = true
logging.level = "INFO"
wheel.install-dir = "flag_gems"
build-dir = "build/{cache_tag}"