-
Notifications
You must be signed in to change notification settings - Fork 24
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 #354 from F2I-Consulting/dev
v2.12.0.0
- Loading branch information
Showing
40 changed files
with
2,302 additions
and
1,141 deletions.
There are no files selected for viewing
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,60 @@ | ||
[build-system] | ||
requires = ["setuptools"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = 'fesapi' | ||
version = '${Fesapi_PYTHON_VERSION}' | ||
authors = [ | ||
{name = "F2I-CONSULTING"}, | ||
] | ||
maintainers = [ | ||
{name = "F2I-CONSULTING"}, | ||
] | ||
description = "A library for using the Energistics data standards" | ||
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" | ||
|
||
[project.urls] | ||
source = "https://github.com/F2I-Consulting/fesapi/issues" | ||
releasenotes = "https://github.com/F2I-Consulting/fesapi/releases" | ||
documentation = "https://www.f2i-consulting.com/fesapi/doxygen/" | ||
issues = "https://github.com/F2I-Consulting/fesapi/issues" | ||
|
||
[tool.setuptools] | ||
packages=['fesapi'] | ||
package-dir={"fesapi" = "fesapi"} | ||
ext-modules = [ | ||
{name='fesapi._fesapi', sources=['swigGeneratedPythonWrapper.cpp'], library-dirs=['${CMAKE_INSTALL_PREFIX}/${CMAKE_INSTALL_LIBDIR}'], libraries=['${ASSEMBLY_NAME}',], ${EXTRA_COMPILE_ARGS}} | ||
] | ||
|
||
[tool.setuptools.package-data] | ||
fesapi = ["*.dll", "*.so", "*.so.*"] |
This file was deleted.
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
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,3 @@ | ||
Enable CMake boolean variable SWIG_PYTHON_BUILTIN if you want more performance : read [SWIG documentation](http://swig.org/Doc4.0/SWIGDocumentation.html#Python_nn28) for more information about this "builtin" parameter. The main drawback of using such a parameter is that it will be harder/impossible for your Python IDE to enable autocompletion for your FESAPI python extension. The recommendation is to use SWIG_PYTHON_BUILTIN only in production. | ||
|
||
Please disable the SWIG_LINKED_TO_RELEASE cmake variable if you build FESAPI in Debug mode. |
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 |
---|---|---|
@@ -1,3 +1,15 @@ | ||
Enable CMake boolean variable SWIG_PYTHON_BUILTIN if you want more performance : read [SWIG documentation](http://swig.org/Doc4.0/SWIGDocumentation.html#Python_nn28) for more information about this "builtin" parameter. The main drawback of using such a parameter is that it will be harder/impossible for your Python IDE to enable autocompletion for your FESAPI python extension. The recommendation is to use SWIG_PYTHON_BUILTIN only in production. | ||
|
||
Please disable the SWIG_LINKED_TO_RELEASE cmake variable if you build FESAPI in Debug mode. | ||
**FESAPI** is a library for Energistics data standards (mainly RESQML™) | ||
|
||
### Examples | ||
|
||
A Python script and a Jupyter Notebook are available [here](https://github.com/F2I-Consulting/fesapi/tree/master/python/example). | ||
|
||
### Credits | ||
This software was developed with : | ||
- the gSOAP toolkit from Genivia Inc | ||
- the date library from Howard Hinnant | ||
|
||
FESAPI Product incorporates RESQML™, WITSML™ and PRODML™ technology/standards provided by the Energistics Consortium, Inc. | ||
|
||
RESQML, WITSML and PRODML are trademarks or registered trademarks of Energistics Consortium, Inc. |
Oops, something went wrong.