sourcepp 2024.11.10.dev2__tar.gz → 2024.11.11.dev2__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/CMakeLists.txt +2 -2
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/PKG-INFO +2 -2
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/cfg/pyproject.toml +1 -1
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/pyproject.toml +2 -2
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/sourcepp/__init__.py +3 -3
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/LICENSE +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/README.md +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/THIRDPARTY_LEGAL_NOTICES.txt +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/cfg/CMakeLists.txt +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/gamepp.h +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/sourcepp.cpp +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/sourcepp.h +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/steampp.h +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/toolpp.h +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/vcryptpp.h +0 -0
- {sourcepp-2024.11.10.dev2 → sourcepp-2024.11.11.dev2}/src/vtfpp.h +0 -0
|
@@ -30,7 +30,7 @@ endif()
|
|
|
30
30
|
set(CMAKE_POSITION_INDEPENDENT_CODE ON)
|
|
31
31
|
|
|
32
32
|
set(SOURCEPP_BUILD_PYTHON_WRAPPERS ON CACHE INTERNAL "" FORCE)
|
|
33
|
-
set(SOURCEPP_PYTHON_VERSION "2024.11.
|
|
33
|
+
set(SOURCEPP_PYTHON_VERSION "2024.11.11dev2")
|
|
34
34
|
|
|
35
35
|
# As weird as this looks, this is necessary for sdist wheel
|
|
36
36
|
set(SOURCEPP_PYTHON_IS_SUBDIR OFF)
|
|
@@ -41,6 +41,6 @@ else()
|
|
|
41
41
|
FetchContent_Declare(
|
|
42
42
|
sourcepp
|
|
43
43
|
GIT_REPOSITORY "https://github.com/craftablescience/sourcepp.git"
|
|
44
|
-
GIT_TAG "
|
|
44
|
+
GIT_TAG "13004d3c337fd37cab02201beb78ed80b255dd71")
|
|
45
45
|
FetchContent_MakeAvailable(sourcepp)
|
|
46
46
|
endif()
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: sourcepp
|
|
3
|
-
Version: 2024.11.
|
|
3
|
+
Version: 2024.11.11.dev2
|
|
4
4
|
Summary: Several modern C++20 libraries for sanely parsing Valve formats.
|
|
5
5
|
Home-page: https://github.com/craftablescience/sourcepp
|
|
6
6
|
Author-Email: craftablescience <lauralewisdev@gmail.com>
|
|
@@ -18,7 +18,7 @@ Project-URL: Homepage, https://github.com/craftablescience/sourcepp
|
|
|
18
18
|
Project-URL: Repository, https://github.com/craftablescience/sourcepp
|
|
19
19
|
Project-URL: Issue tracker, https://github.com/craftablescience/sourcepp/issues
|
|
20
20
|
Project-URL: Funding, https://ko-fi.com/craftablescience
|
|
21
|
-
Requires-Python: >=3.
|
|
21
|
+
Requires-Python: >=3.8
|
|
22
22
|
Description-Content-Type: text/markdown
|
|
23
23
|
|
|
24
24
|
<div>
|
|
@@ -10,7 +10,7 @@ authors = [{ name = "craftablescience", email = "lauralewisdev@gmail.com" }]
|
|
|
10
10
|
maintainers = [{ name = "craftablescience", email = "lauralewisdev@gmail.com" }]
|
|
11
11
|
description = "Several modern C++20 libraries for sanely parsing Valve formats."
|
|
12
12
|
readme = "README.md"
|
|
13
|
-
requires-python = ">=3.
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
14
|
classifiers = [
|
|
15
15
|
"License :: OSI Approved :: MIT License",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
@@ -5,12 +5,12 @@ build-backend = "scikit_build_core.build"
|
|
|
5
5
|
|
|
6
6
|
[project]
|
|
7
7
|
name = "sourcepp"
|
|
8
|
-
version = "2024.11.
|
|
8
|
+
version = "2024.11.11dev2"
|
|
9
9
|
authors = [{ name = "craftablescience", email = "lauralewisdev@gmail.com" }]
|
|
10
10
|
maintainers = [{ name = "craftablescience", email = "lauralewisdev@gmail.com" }]
|
|
11
11
|
description = "Several modern C++20 libraries for sanely parsing Valve formats."
|
|
12
12
|
readme = "README.md"
|
|
13
|
-
requires-python = ">=3.
|
|
13
|
+
requires-python = ">=3.8"
|
|
14
14
|
classifiers = [
|
|
15
15
|
"License :: OSI Approved :: MIT License",
|
|
16
16
|
"Intended Audience :: Developers",
|
|
@@ -1,5 +1,5 @@
|
|
|
1
|
-
from ._sourcepp_impl import __doc__, gamepp, sourcepp, steampp, vcryptpp, vtfpp
|
|
1
|
+
from ._sourcepp_impl import __doc__, gamepp, sourcepp, steampp, toolpp, vcryptpp, vtfpp
|
|
2
2
|
|
|
3
3
|
__author__ = "craftablescience"
|
|
4
|
-
__version__ = "2024.11.
|
|
5
|
-
__all__ = ['__author__', '__doc__', '__version__', 'gamepp', 'sourcepp', 'steampp', 'vcryptpp', 'vtfpp']
|
|
4
|
+
__version__ = "2024.11.11dev2"
|
|
5
|
+
__all__ = ['__author__', '__doc__', '__version__', 'gamepp', 'sourcepp', 'steampp', 'toolpp', 'vcryptpp', 'vtfpp']
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|