Skip to content

Commit 2b5b6f6

Browse files
committed
Initial attempt to migrate to nanobind
1 parent 3e01240 commit 2b5b6f6

13 files changed

+405
-293
lines changed

CMakeLists.txt

+311-245
Large diffs are not rendered by default.

cmake-format.py

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
with section("format"):
2+
disable = False
3+
line_width = 85
4+
tab_size = 4

ctest/CMakeLists.txt

+24-24
Original file line numberDiff line numberDiff line change
@@ -6,37 +6,37 @@ set(CMAKE_CXX_STANDARD_REQUIRED True)
66

77
find_package(GTest)
88
if(NOT GTest_FOUND)
9-
# pthread (required for GoogleTest)
10-
# https://stackoverflow.com/questions/1620918/cmake-and-libpthread
11-
set(THREADS_PREFER_PTHREAD_FLAG ON)
12-
find_package(Threads REQUIRED)
9+
# pthread (required for GoogleTest)
10+
# https://stackoverflow.com/questions/1620918/cmake-and-libpthread
11+
set(THREADS_PREFER_PTHREAD_FLAG ON)
12+
find_package(Threads REQUIRED)
1313

14-
# Fetch GoogleTest
15-
include(FetchContent)
14+
# Fetch GoogleTest
15+
include(FetchContent)
1616

17-
# cmake-lint inline directives must be specified at body scope. See
18-
# https://cmake-format.readthedocs.io/en/latest/lint-inline.html
17+
# cmake-lint inline directives must be specified at body scope. See
18+
# https://cmake-format.readthedocs.io/en/latest/lint-inline.html
1919

20-
# cmake-lint: disable=C0301
21-
FetchContent_Declare(
22-
googletest
23-
GIT_REPOSITORY https://github.com/google/googletest.git
24-
GIT_TAG 4fb7039fda3f6588c7ca9664176f8c9e0a023b4a)
25-
FetchContent_MakeAvailable(googletest)
20+
# cmake-lint: disable=C0301
21+
FetchContent_Declare(
22+
googletest
23+
GIT_REPOSITORY https://github.com/google/googletest.git
24+
GIT_TAG 4fb7039fda3f6588c7ca9664176f8c9e0a023b4a)
25+
FetchContent_MakeAvailable(googletest)
2626
endif()
2727

2828
foreach(testcase IN ITEMS test_gridsys test_niggli)
29-
add_executable(${testcase} ${CMAKE_CURRENT_SOURCE_DIR}/${testcase}.cpp
30-
${CMAKE_CURRENT_SOURCE_DIR}/utils.c)
31-
target_link_libraries(
32-
${testcase}
33-
PUBLIC gridsys
34-
PRIVATE GTest::gtest GTest::gtest_main)
35-
target_include_directories(${testcase} PUBLIC ${PROJECT_SOURCE_DIR}/c
36-
${CMAKE_CURRENT_SOURCE_DIR})
37-
gtest_discover_tests(${testcase})
29+
add_executable(${testcase} ${CMAKE_CURRENT_SOURCE_DIR}/${testcase}.cpp
30+
${CMAKE_CURRENT_SOURCE_DIR}/utils.c)
31+
target_link_libraries(
32+
${testcase}
33+
PUBLIC gridsys
34+
PRIVATE GTest::gtest GTest::gtest_main)
35+
target_include_directories(${testcase} PUBLIC ${PROJECT_SOURCE_DIR}/c
36+
${CMAKE_CURRENT_SOURCE_DIR})
37+
gtest_discover_tests(${testcase})
3838
endforeach()
3939

4040
if(WITH_Fortran)
41-
add_subdirectory(fortran)
41+
add_subdirectory(fortran)
4242
endif()

ctest/fortran/gridsysf/CMakeLists.txt

+3-3
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,6 @@ set_target_properties(test_${NAME} PROPERTIES Fortran_MODULE_DIRECTORY
77
${LIB_MOD_DIR})
88

99
add_test(
10-
NAME ${NAME}
11-
COMMAND $<TARGET_FILE:test_${NAME}> ${CMAKE_CURRENT_BINARY_DIR}
12-
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})
10+
NAME ${NAME}
11+
COMMAND $<TARGET_FILE:test_${NAME}> ${CMAKE_CURRENT_BINARY_DIR}
12+
WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR})

fortran/CMakeLists.txt

+10-10
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
if(USE_OpenMP)
2-
find_package(
3-
OpenMP
4-
COMPONENTS Fortran
5-
REQUIRED)
6-
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} ${OpenMP_Fortran_FLAGS}")
2+
find_package(
3+
OpenMP
4+
COMPONENTS Fortran
5+
REQUIRED)
6+
set(CMAKE_Fortran_FLAGS "${CMAKE_Fortran_FLAGS} ${OpenMP_Fortran_FLAGS}")
77
endif()
88

99
add_library(gridsysf_static STATIC gridsysf.f90)
@@ -13,11 +13,11 @@ target_link_libraries(gridsysf_static PRIVATE gridsys_static)
1313
install(TARGETS gridsysf_static ARCHIVE DESTINATION ${CMAKE_INSTALL_LIBDIR})
1414

1515
if(BUILD_SHARED_LIBRARIES)
16-
add_library(gridsysf SHARED gridsysf.f90)
17-
set_property(TARGET gridsysf PROPERTY VERSION ${PROJECT_VERSION})
18-
set_property(TARGET gridsysf PROPERTY SOVERSION ${soserial})
19-
target_link_libraries(gridsysf PUBLIC gridsys)
20-
install(TARGETS gridsysf LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
16+
add_library(gridsysf SHARED gridsysf.f90)
17+
set_property(TARGET gridsysf PROPERTY VERSION ${PROJECT_VERSION})
18+
set_property(TARGET gridsysf PROPERTY SOVERSION ${soserial})
19+
target_link_libraries(gridsysf PUBLIC gridsys)
20+
install(TARGETS gridsysf LIBRARY DESTINATION ${CMAKE_INSTALL_LIBDIR})
2121
endif()
2222

2323
install(FILES ${CMAKE_CURRENT_BINARY_DIR}/gridsysf.mod
File renamed without changes.
File renamed without changes.
File renamed without changes.

scripts/phono3py phono3py/scripts/phono3py.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python
2-
31
# Copyright (C) 2011 Atsushi Togo
42
# All rights reserved.
53
#
@@ -36,7 +34,9 @@
3634

3735
from phono3py.cui.phono3py_script import main
3836

39-
if __name__ == "__main__":
37+
38+
def run():
39+
"""Run phono3py script."""
4040
argparse_control = {
4141
"fc_symmetry": False,
4242
"is_nac": False,

scripts/phono3py-load phono3py/scripts/phono3py_load.py

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,3 @@
1-
#!/usr/bin/env python
2-
31
# Copyright (C) 2020 Atsushi Togo
42
# All rights reserved.
53
#
@@ -36,6 +34,8 @@
3634

3735
from phono3py.cui.phono3py_script import main
3836

39-
if __name__ == "__main__":
37+
38+
def run():
39+
"""Run phono3py-load script."""
4040
argparse_control = {"fc_symmetry": True, "is_nac": True, "load_phono3py_yaml": True}
4141
main(**argparse_control)

pyproject.toml

+47-5
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,49 @@
11
[build-system]
2-
requires = ["setuptools", "wheel", "numpy"]
2+
requires = ["scikit-build-core", "nanobind", "numpy"]
3+
build-backend = "scikit_build_core.build"
4+
5+
[project]
6+
name = "phono3py"
7+
dynamic = ["version"]
8+
readme = { file = "README.md", content-type = "text/markdown" }
9+
description = "This is the phono3py module."
10+
authors = [{ name = "Atsushi Togo", email = "[email protected]" }]
11+
requires-python = ">=3.8"
12+
dependencies = [
13+
"numpy>=1.17.0",
14+
"scipy",
15+
"PyYAML>=5.3",
16+
"matplotlib>=2.2.2",
17+
"h5py>=3.0",
18+
"spglib>=2.3",
19+
"phonopy>=2.25,<2.26",
20+
]
21+
license = { file = "LICENSE" }
22+
23+
[project.urls]
24+
Homepage = "https://phonopy.github.io/phono3py/"
25+
Repository = "https://github.com/phonopy/phono3py"
26+
27+
[project.scripts]
28+
phono3py = "phono3py.scripts.phono3py:run"
29+
phono3py-load = "phonopy.scripts.phono3py_load:run"
30+
31+
[tool.scikit-build]
32+
metadata.version.provider = "scikit_build_core.metadata.setuptools_scm"
33+
sdist.exclude = ["*"]
34+
sdist.include = [
35+
"test",
36+
"LICENSE",
37+
"c",
38+
"example",
39+
"phono3py",
40+
"pyproject.toml",
41+
"CMakeLists.txt",
42+
"README.md",
43+
]
44+
45+
[tool.setuptools_scm]
46+
write_to = "phono3py/_version.py"
347

448
[tool.ruff]
549
line-length = 88
@@ -10,10 +54,8 @@ lint.select = [
1054
"E", # pycodestyle-errors
1155
"D", # pydocstyle
1256
]
13-
lint.extend-ignore = [
14-
"D417",
15-
"D100",
16-
]
57+
lint.extend-ignore = ["D417", "D100"]
58+
exclude = ["cmake-format.py"]
1759

1860
[tool.ruff.lint.pydocstyle]
1961
convention = "numpy"

setup.cfg setup-legacy.cfg

File renamed without changes.

setup.py setup-legacy.py

File renamed without changes.

0 commit comments

Comments
 (0)