forked from NREL/flasc
-
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 branch 'flasc-dataframe' into fdf/update-examples
- Loading branch information
Showing
10 changed files
with
69 additions
and
112 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,11 +4,9 @@ | |
|
||
__author__ = """Bart Doekemeijer, Paul Fleming""" | ||
__email__ = "[email protected], [email protected]" | ||
__version__ = "0.1.0" | ||
|
||
from pathlib import Path | ||
from importlib.metadata import version | ||
|
||
with open(Path(__file__).parent / "version.py") as _version_file: | ||
__version__ = _version_file.read().strip() | ||
__version__ = version("flasc") | ||
|
||
from .flasc_dataframe import FlascDataFrame |
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
|
||
__author__ = """Bart Doekemeijer, Paul Fleming""" | ||
__email__ = "[email protected], [email protected]" | ||
__version__ = "0.1.0" | ||
|
||
from pathlib import Path | ||
|
||
|
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 |
---|---|---|
|
@@ -4,7 +4,6 @@ | |
|
||
__author__ = """Bart Doekemeijer, Paul Fleming""" | ||
__email__ = "[email protected], [email protected]" | ||
__version__ = "0.1.0" | ||
|
||
from pathlib import Path | ||
|
||
|
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 |
---|---|---|
|
@@ -4,7 +4,7 @@ | |
|
||
__author__ = """Bart Doekemeijer, Paul Fleming""" | ||
__email__ = "[email protected], [email protected]" | ||
__version__ = "1.0" | ||
|
||
|
||
from pathlib import Path | ||
|
||
|
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,67 @@ | ||
[build-system] | ||
requires = ["setuptools >= 40.6.0", "wheel"] | ||
requires = ["setuptools >= 61.0"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "flasc" | ||
version = "2.0.1" | ||
description = "FLASC provides a rich suite of analysis tools for SCADA data filtering & analysis, wind farm model validation, field experiment design, and field experiment monitoring." | ||
readme = "README.md" | ||
requires-python = ">=3.9" | ||
authors = [ | ||
{ name = "Paul Fleming", email = "[email protected]" }, | ||
{ name = "Michael (Misha) Sinner", email = "[email protected]" }, | ||
{ name = "Eric Simley", email = "[email protected]" }, | ||
] | ||
license = { file = "LICENSE.txt" } | ||
keywords = ["flasc"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stable", | ||
"Intended Audience :: Developers", | ||
"License :: OSI Approved :: BSD License", | ||
"Natural Language :: English", | ||
"Programming Language :: Python :: 3", | ||
] | ||
dependencies = [ | ||
"bokeh>=2, <4", | ||
"floris~=4.0", | ||
"feather-format~=0.0", | ||
"ipympl~=0.9", | ||
"matplotlib~=3.8", | ||
"numpy~=1.20", | ||
"pandas~=2.0", | ||
"SALib~=1.0", | ||
"scipy~=1.1", | ||
"streamlit~=1.0", | ||
"tkcalendar~=1.0", | ||
"seaborn~=0.0", | ||
"polars~=1.0", | ||
"ephem", | ||
"coloredlogs~=15.0", | ||
] | ||
|
||
[project.optional-dependencies] | ||
docs = [ | ||
"jupyter-book", | ||
"sphinx-book-theme", | ||
"sphinx-autodoc-typehints", | ||
"sphinxcontrib-autoyaml", | ||
"sphinxcontrib.mermaid" | ||
] | ||
develop = [ | ||
"pytest", | ||
"pre-commit", | ||
"ruff", | ||
"isort" | ||
] | ||
|
||
[tool.setuptools.packages.find] | ||
include = ["flasc*"] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/NREL/flasc" | ||
Documentation = "https://readthedocs.org" | ||
|
||
|
||
[coverage.run] | ||
# Coverage.py configuration file | ||
|
@@ -25,7 +85,6 @@ filterwarnings = [ | |
|
||
# Exclude a variety of commonly ignored directories. | ||
exclude = [ | ||
"flasc/version.py", | ||
".bzr", | ||
".direnv", | ||
".eggs", | ||
|