-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathsetup.py
More file actions
33 lines (26 loc) · 1010 Bytes
/
Copy pathsetup.py
File metadata and controls
33 lines (26 loc) · 1010 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
# SPDX-FileCopyrightText: 2025 Dominik Krupke <krupked@gmail.com>
# SPDX-License-Identifier: MIT
from pathlib import Path
from setuptools import find_packages
from skbuild import setup
def readme():
"""
:return: Content of README.md
"""
with Path("README.py.md").open() as file:
return file.read()
setup( # https://scikit-build.readthedocs.io/en/latest/usage.html#setup-options
name="pycft",
version="1.0.0",
author="Luca Accorsi, Francesco Cavaliere, and Dominik Krupke",
license="MIT",
description="Python-Bindings for the C++-based Set Cover Algorithm CFT.",
long_description=readme(),
long_description_content_type="text/markdown",
packages=find_packages("src"), # Include all packages in `./src`.
package_dir={"": "src"}, # The root for our python package is in `./src`.
python_requires=">=3.10", # lowest python version supported.
install_requires=[ # Python Dependencies
],
cmake_minimum_required_version="3.23",
)