We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 70bc563 commit f82fb8eCopy full SHA for f82fb8e
.python_package/setup.cfg.in
@@ -31,6 +31,7 @@ python_requires = >=3.8
31
*.hpp
32
*.h
33
*.cmake
34
+ py.typed
35
36
[options.packages.find]
37
where = src
.python_package/src/gridtools_cpp/__init__.py
@@ -9,12 +9,12 @@
9
import pathlib
10
11
12
-_file = pathlib.Path(__file__)
+_FILE = pathlib.Path(__file__)
13
14
15
def get_cmake_dir() -> pathlib.Path:
16
- return _file.parent / "data" / "lib" / "cmake" / "GridTools"
+ return _FILE.parent / "data" / "lib" / "cmake" / "GridTools"
17
18
19
def get_include_dir() -> pathlib.Path:
20
- return _file.parent / "data" / "include"
+ return _FILE.parent / "data" / "include"
.python_package/src/gridtools_cpp/py.typed
0 commit comments