-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpyproject.toml
More file actions
46 lines (40 loc) · 972 Bytes
/
pyproject.toml
File metadata and controls
46 lines (40 loc) · 972 Bytes
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
[build-system]
requires = [
"setuptools>=64",
"wheel",
]
build-backend = "setuptools.build_meta"
[project]
name = "kernel-course"
dynamic = ["version"]
description = "Educational project for implementing and benchmarking kernels in Python, PyTorch, Triton, and CuTe."
readme = "README.md"
license = { file = "LICENSE" }
requires-python = ">=3.8"
dependencies = [
"torch",
]
classifiers = [
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: Unix"
]
[project.urls]
Homepage = "https://github.com/flash-algo/kernel-course"
Source = "https://github.com/flash-algo/kernel-course"
Issues = "https://github.com/flash-algo/kernel-course/issues"
[project.optional-dependencies]
dev = [
"pytest>=6.0",
"black",
"ruff",
]
[tool.setuptools.dynamic]
version = { attr = "kernel_course.__version__" }
[tool.setuptools.packages.find]
where = ["."]
include = ["kernel_course*"]
exclude = [
"build",
"dist",
]