From f4637794f069396ea674cc8f596bcc6a1dc4ef1c Mon Sep 17 00:00:00 2001 From: Arne Naegel Date: Wed, 17 Apr 2024 07:33:20 +0200 Subject: [PATCH] Create setup.py --- setup.py | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..e798d6d --- /dev/null +++ b/setup.py @@ -0,0 +1,10 @@ +from skbuild import setup # This line replaces 'from setuptools import setup' +setup( + name="hello-cpp", + version="1.2.3", + description="a minimal example package (cpp version)", + author='The scikit-build team', + license="MIT", + packages=['hello'], + python_requires=">=3.7", +)