Skip to content

Commit

Permalink
Move setuptools options back to setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
jakirkham authored and vyasr committed Feb 17, 2023
1 parent eafe8bd commit 6b2ca6a
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 10 deletions.
9 changes: 0 additions & 9 deletions python/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -126,12 +126,3 @@ skip = [
"dist",
"__init__.py",
]

[tool.setuptools]
zip-safe = false

[tool.setuptools.packages.find]
include = [
"rmm",
"rmm.*",
]
6 changes: 5 additions & 1 deletion python/setup.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Copyright (c) 2019-2022, NVIDIA CORPORATION.

from setuptools import find_packages
from skbuild import setup

setup()
setup(
packages=find_packages(include=["rmm", "rmm.*"]),
zip_safe=False,
)

0 comments on commit 6b2ca6a

Please sign in to comment.