-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
33 lines (26 loc) · 928 Bytes
/
setup.py
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 <[email protected]>
# 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="pyaccft",
version="0.0.1",
author="TODO",
license="LICENSE",
description="Pybinding for accft",
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",
)