-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
8e26fb9
commit 6945932
Showing
51 changed files
with
479 additions
and
1,026 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
*.f90 linguist-language=fortran | ||
*.fypp linguist-language=fortran | ||
|
||
doc/** linguist-documentation | ||
docs/** linguist-documentation | ||
example/** linguist-vendored | ||
include/** linguist-vendored | ||
capi/** linguist-vendored | ||
media/** linguist-vendored | ||
pywrapper/** linguist-vendored | ||
py/** linguist-vendored | ||
|
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,34 +1,42 @@ | ||
*.o | ||
#API: an (incompatible) API change | ||
#BENCH: changes to the benchmark suite | ||
#BLD: change related to building numpy | ||
#BUG: bug fix | ||
#DEP: deprecate something, or remove a deprecated object | ||
#DEV: development tool or utility | ||
#DOC: documentation | ||
#ENH: enhancement | ||
#MAINT: maintenance commit (refactoring, typos, etc.) | ||
#REV: revert an earlier commit | ||
#STY: style fix (whitespace, PEP8) | ||
#TST: addition or modification of tests | ||
#REL: related to releasing | ||
|
||
.idea/ | ||
bin/ | ||
build/ | ||
docs/build/ | ||
dist/ | ||
local/ | ||
API-doc/ | ||
.vscode/ | ||
*.obj | ||
*.exe | ||
*.out | ||
*.pyd | ||
*.lib | ||
*.cmake | ||
*.o | ||
*.mod | ||
*.dylib | ||
*.dll | ||
*.pyd | ||
*.dll.a | ||
*.so | ||
*.a | ||
*.dll | ||
*.so | ||
*.dylib | ||
|
||
.idea | ||
.vscode | ||
|
||
build/ | ||
*.egg-info | ||
|
||
.DS_Store | ||
|
||
dist/ | ||
|
||
__pycache__ | ||
*.so | ||
|
||
generator* | ||
.DS_Store | ||
|
||
pywrapper/src/pyecx/ecx*.h | ||
pywrapper/src/pyecx/*.dylib | ||
pywrapper/src/pyecx/*.so | ||
pywrapper/src/pyecx/*.dll | ||
pywrapper/src/pyecx/*.dll.a | ||
pywrapper/wheelhouse/ | ||
py/wheelhouse/ | ||
py/src/pyecx/bin/ | ||
py/src/pyecx/include/ | ||
py/src/pyecx/lib/ |
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,41 @@ | ||
--- | ||
project: ecx | ||
summary: ECX - Electrochemistry | ||
project_github: https://github.com/MilanSkocic/ecx | ||
project_download: https://github.com/MilanSkocic/ecx/releases | ||
project_website: https://milanskocic.github.io/ecx/index.html | ||
author: Milan Skocic | ||
email: [email protected] | ||
github: https://github.com/MilanSkocic | ||
src_dir: ./src | ||
include: ./include | ||
media_dir: ./media | ||
page_dir: ./doc | ||
output_dir: API-doc | ||
exclude_dir: ./example | ||
./test | ||
display: public | ||
protected | ||
source: true | ||
proc_internals: true | ||
sort: permission-alpha | ||
print_creation_date: true | ||
md_extensions: markdown.extensions.toc | ||
markdown.extensions.smarty | ||
fpp_extensions: fypp | ||
preprocess: true | ||
preprocessor: fypp | ||
graph: true | ||
graph_maxnodes: 250 | ||
graph_maxdepth: 5 | ||
coloured_edges: true | ||
license: by-sa | ||
favicon: media/logo.ico | ||
--- | ||
|
||
![ecx](./media/logo.png) | ||
|
||
[TOC] | ||
|
||
{!README.md!} | ||
|
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 @@ | ||
0.1.0 |
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
File renamed without changes.
0
example/example_in_f.f90 → example/example.f90
100755 → 100644
File renamed without changes.
File renamed without changes.
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,9 +1,9 @@ | ||
name = "ecx" | ||
version = "0.1.0" | ||
license = "GNU General Public License v3 (GPLv3)" | ||
license = "MIT" | ||
author = "Milan Skocic" | ||
maintainer = "[email protected]" | ||
copyright = "Copyright 2021-2024, Milan Skocic" | ||
copyright = "Copyright, Milan Skocic" | ||
categories =["Science"] | ||
keywords = ["electrochemistry", "impedance", "photoelectrochemistry"] | ||
homepage = "https://milanskocic.github.io/ecx/index.html" | ||
|
@@ -28,11 +28,11 @@ library = true | |
|
||
[[example]] | ||
name="example_in_f" | ||
main="example_in_f.f90" | ||
main="example.f90" | ||
|
||
[[example]] | ||
name="example_in_c" | ||
main="example_in_c.c" | ||
main="example.c" | ||
|
||
[[test]] | ||
name="test_core" | ||
|
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 was deleted.
Oops, something went wrong.
Oops, something went wrong.