-
Notifications
You must be signed in to change notification settings - Fork 40
/
pyproject.toml
39 lines (36 loc) · 977 Bytes
/
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
[project]
name = "flag_gems"
version = "2.0"
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]"},
]
description = "FlagGems is a function library written in Triton."
readme = {file= "README.md", content-type="text/markdown"}
requires-python = ">=3.8"
license = {text = "LICENSE.txt"}
classifiers = [
"Development Status :: 3 - Alpha",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: Apache Software License",
]
dependencies = [
"triton>=2.2.0",
"torch>=2.2.0",
"transformers>=4.40.2"
]
[project.optional-dependencies]
test = [
"pytest>=7.1.0",
"numpy>=1.26",
"scipy>=1.14"
]
[project.urls]
homepage = "https://github.com/FlagOpen/FlagGems"
[tool.coverage.run]
omit = [
"*/.flaggems/*",
"*/usr/lib/*",
]