File: setup.py

package info (click to toggle)
scikit-build 0.18.1-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,792 kB
  • sloc: python: 5,258; cpp: 284; makefile: 171; f90: 12; sh: 7
file content (22 lines) | stat: -rw-r--r-- 704 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
from __future__ import annotations

from skbuild import setup

setup(
    name="test_include_exclude_data_with_base",
    version="0.1.0",
    cmake_languages=(),
    packages=["hello", "hello2", "hello.data.subdata", "hello2.data2.subdata2"],
    package_dir={"": "src"},
    include_package_data=True,
    exclude_package_data={
        "hello.data.subdata": [
            "*_data4_cmake_generated_and_exclude_from_setup.txt",
            "*data4_include_from_manifest_and_exclude_from_setup.txt",
        ],
        "hello2.data2.subdata2": [
            "*_data4_cmake_generated_and_exclude_from_setup.txt",
            "*_data4_include_from_manifest_and_exclude_from_setup.txt",
        ],
    },
)