Skip to content

Commit

Permalink
Reverting setup.py after rebase
Browse files Browse the repository at this point in the history
  • Loading branch information
chudur-budur committed Feb 7, 2024
1 parent 7fbcf49 commit 52a2411
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@


import re
import sys

from setuptools import find_packages
from skbuild import setup
Expand Down Expand Up @@ -48,6 +49,15 @@ def to_cmake_format(version: str):
return match.group(0)


# Set is_install and is_develop flags
is_install = sys.argv[1] == "install" or "bdist_wheel" in sys.argv
is_develop = sys.argv[1] == "develop"


# Test if system is WIN
is_windows = sys.platform.startswith("win") or sys.platform.startswith("cyg")


# Get the project version
__version__ = versioneer.get_version()

Expand Down

0 comments on commit 52a2411

Please sign in to comment.