Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
change
sglang
Commits
6f98c586
Unverified
Commit
6f98c586
authored
Jan 18, 2025
by
lukec
Committed by
GitHub
Jan 18, 2025
Browse files
fix sgl-kernel setup.py (#2963)
parent
656dcc1a
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sgl-kernel/setup.py
sgl-kernel/setup.py
+2
-2
No files found.
sgl-kernel/setup.py
View file @
6f98c586
from
pathlib
import
Path
from
setuptools
import
setup
from
setuptools
import
find_packages
,
setup
from
torch.utils.cpp_extension
import
BuildExtension
,
CUDAExtension
root
=
Path
(
__file__
).
parent
.
resolve
()
...
...
@@ -67,7 +67,7 @@ ext_modules = [
setup
(
name
=
"sgl-kernel"
,
version
=
get_version
(),
packages
=
[
"sgl_kernel"
]
,
packages
=
find_packages
()
,
package_dir
=
{
""
:
"src"
},
ext_modules
=
ext_modules
,
cmdclass
=
{
"build_ext"
:
BuildExtension
},
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment