-
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.
Merge pull request #2 from SINTEF/fix_3_11_compatibility
Added build setup and fixed error related to dataclass
- Loading branch information
Showing
13 changed files
with
1,290 additions
and
41 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,11 @@ | ||
__pycache__/ | ||
Data | ||
PythonScript | ||
venv | ||
.idea/ | ||
build | ||
dist | ||
/docs/_build/ | ||
/feems.egg-info/ | ||
.DS_Store | ||
*.egg-info/ |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +0,0 @@ | ||
poetry install | ||
poetry build | ||
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
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,33 @@ | ||
[tool.poetry] | ||
name = "feems" | ||
version = "0.10.4" | ||
description = "" | ||
authors = ["Kevin Koosup Yum <kevin.koosup.yum@gmail.com>"] | ||
readme = "readme.md" | ||
include = ["feems/py.typed"] | ||
license = "Proprietary" | ||
|
||
[tool.poetry.dependencies] | ||
python = ">=3.9,<3.13" | ||
pandas = "^2.1.1" | ||
scipy = "^1.11.2" | ||
numpy = "^1.22.0" | ||
|
||
[tool.poetry.group.dev.dependencies] | ||
pytest = "^7.4.2" | ||
black = "22.6.0" | ||
mypy = "^1.5.1" | ||
sphinx = "^7.2.6" | ||
sphinx-rtd-theme = "^1.3.0" | ||
sphinx-autodoc-typehints = "^1.24.0" | ||
pytest-subtests = "^0.11.0" | ||
unittest-xml-reporting = "^3.2.0" | ||
pytest-cov = "^4.1.0" | ||
|
||
[tool.black] | ||
line-length = 99 | ||
target-version = ['py37'] | ||
|
||
[build-system] | ||
requires = ["poetry>=1.4.0", "setuptools>=40.8.0"] | ||
build-backend = "poetry.core.masonry.api" |
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 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
pandas | ||
numpy | ||
scipy | ||
protobuf | ||
pandas |
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,18 @@ | ||
mypy | ||
pytest | ||
wheel | ||
black[jupyter] | ||
pytest-subtests | ||
mypy-protobuf | ||
types-protobuf | ||
typing_extensions | ||
jupyter | ||
jupyterlab | ||
nbdev | ||
deepdiff | ||
plotly | ||
poetry | ||
-e ./feems | ||
-e ./machinery-system-structure | ||
-e ./RunFeemsSim | ||
-r requirements.txt |