-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #26 from F2I-Consulting/dev
v0.3.1.0
- Loading branch information
Showing
31 changed files
with
1,612 additions
and
4,505 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: Actions to run when releasing | ||
|
||
on: | ||
release: | ||
types: [published] | ||
|
||
env: | ||
GH_TOKEN: ${{ secrets.RELEASE_TOKEN }} | ||
GITHUB_REF_NAME: ${{ github.ref_name }} | ||
|
||
jobs: | ||
# Remark : https://github.com/orgs/community/discussions/46034 | ||
add-checksum: | ||
runs-on: ubuntu-latest | ||
steps: | ||
# It is necessary to checkout the repository for GitHub CLI to know which repository to target | ||
- name: Checkout repository | ||
uses: actions/checkout@v4 | ||
- name: ZIP checksum | ||
run: | | ||
gh release download --archive=zip | ||
shasum -a 256 *.zip > fetpapi-${GITHUB_REF_NAME#v}.zip.sha256.txt | ||
gh release upload ${{ github.ref_name }} fetpapi-${GITHUB_REF_NAME#v}.zip.sha256.txt | ||
- name: TAR.GZ checksum | ||
run: | | ||
gh release download --archive=tar.gz | ||
shasum -a 256 *.tar.gz > fetpapi-${GITHUB_REF_NAME#v}.tar.gz.sha256.txt | ||
gh release upload ${{ github.ref_name }} fetpapi-${GITHUB_REF_NAME#v}.tar.gz.sha256.txt | ||
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,63 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = 'fetpapi' | ||
version = '${Fetpapi_PYTHON_VERSION}' | ||
authors = [ | ||
{name = "F2I-CONSULTING"}, | ||
] | ||
maintainers = [ | ||
{name = "F2I-CONSULTING"}, | ||
] | ||
description = "A library for using the Energistics Transfer Protocol" | ||
readme = "README.md" | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
'Intended Audience :: Developers', | ||
'License :: OSI Approved :: Apache Software License', | ||
'Operating System :: Microsoft :: Windows', | ||
'Operating System :: POSIX :: Linux', | ||
'Operating System :: MacOS', | ||
'Natural Language :: English', | ||
'Programming Language :: Python :: 3', | ||
'Programming Language :: Python :: 3.8', | ||
'Programming Language :: Python :: 3.9', | ||
'Programming Language :: Python :: 3.10', | ||
'Programming Language :: Python :: 3.11', | ||
'Programming Language :: Python :: 3.12', | ||
'Topic :: Software Development', | ||
'Topic :: Software Development :: Libraries', | ||
'Topic :: Software Development :: Libraries :: Application Frameworks ', | ||
'Topic :: File Formats', | ||
] | ||
keywords = [ | ||
"energistics", | ||
"resqml", | ||
"eml", | ||
"witsml", | ||
"prodml", | ||
"osdu", | ||
"rddms", | ||
] | ||
requires-python = ">=3.8" | ||
dependencies = [ | ||
'fesapi==2.12.1', | ||
] | ||
|
||
[project.urls] | ||
source = "https://github.com/F2I-Consulting/fetpapi/issues" | ||
releasenotes = "https://github.com/F2I-Consulting/fetpapi/releases" | ||
documentation = "https://www.f2i-consulting.com/fetpapi/doxygen/" | ||
issues = "https://github.com/F2I-Consulting/fetpapi/issues" | ||
|
||
[tool.setuptools] | ||
packages=['fetpapi'] | ||
package-dir={"fetpapi" = "fetpapi"} | ||
ext-modules = [ | ||
{name='fetpapi._fetpapi', sources=['swigGeneratedPythonWrapper.cpp'], include-dirs=['${Boost_INCLUDE_DIR}','${AVRO_INCLUDE_DIR}'${FESAPI_INCLUDE_DIR_FOR_SETUP_PY}], library-dirs=['${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}'${AVRO_LIBRARY_DIR_RELEASE}${Boost_LIBRARY_DIR_RELEASE}${FESAPI_LIBRARY_DIR_RELEASE}], libraries=['${ASSEMBLY_NAME}'${AVRO_LIBRARY_RELEASE_WLE}${Boost_LIBRARY_RELEASE_WLE}${FESAPI_LIBRARY_RELEASE_WLE}], ${EXTRA_COMPILE_ARGS}} | ||
] | ||
|
||
[tool.setuptools.package-data] | ||
fetpapi = ["*.dll", "*.so", "*.so.*"] |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.