Compare commits
2 Commits
b44edc991a
...
18873ab714
| Author | SHA1 | Date | |
|---|---|---|---|
| 18873ab714 | |||
| ad26aa0a7c |
@@ -1,4 +1,4 @@
|
||||
project('fourdst', 'cpp', version: 'v0.9.20', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
|
||||
project('fourdst', 'cpp', version: 'v0.9.22', default_options: ['cpp_std=c++23'], meson_version: '>=1.5.0')
|
||||
|
||||
add_project_arguments('-fvisibility=default', language: 'cpp')
|
||||
|
||||
|
||||
@@ -8,7 +8,7 @@ build-backend = "mesonpy"
|
||||
|
||||
[project]
|
||||
name = "fourdst" # Choose your Python package name
|
||||
version = "v0.9.11" # Your project's version
|
||||
version = "v0.9.22" # Your project's version
|
||||
description = "Python interface to the utility fourdst modules from the 4D-STAR project"
|
||||
readme = "readme.md"
|
||||
license = { file = "LICENSE.txt" } # Reference your license file [cite: 2]
|
||||
|
||||
@@ -3,12 +3,14 @@ from __future__ import annotations
|
||||
import sys
|
||||
|
||||
from ._phys import atomic, composition, constants, config
|
||||
from ._phys.composition import utils
|
||||
|
||||
sys.modules['fourdst.atomic'] = atomic
|
||||
sys.modules['fourdst.composition'] = composition
|
||||
sys.modules['fourdst.constants'] = constants
|
||||
sys.modules['fourdst.config'] = config
|
||||
sys.modules['fourdst.composition.utils'] = utils
|
||||
|
||||
__all__ = ['atomic', 'composition', 'constants', 'config', 'core', 'cli']
|
||||
|
||||
__version__ = 'v0.9.11'
|
||||
__version__ = 'v0.9.21'
|
||||
@@ -1,4 +1,4 @@
|
||||
[wrap-git]
|
||||
url = https://github.com/4D-STAR/libconfig.git
|
||||
revision = v2.2.2
|
||||
revision = v2.2.3
|
||||
depth = 1
|
||||
|
||||
Reference in New Issue
Block a user