-
Notifications
You must be signed in to change notification settings - Fork 156
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Move all metadata to pyproject.toml (#1026)
- Loading branch information
Showing
6 changed files
with
71 additions
and
96 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 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 |
---|---|---|
|
@@ -2,6 +2,71 @@ | |
requires = ["setuptools >= 40.6.0", "wheel"] | ||
build-backend = "setuptools.build_meta" | ||
|
||
[project] | ||
name = "floris" | ||
version = "4.2" | ||
description = "A controls-oriented engineering wake model." | ||
readme = "README.md" | ||
requires-python = ">=3.8" | ||
authors = [ | ||
{ name = "Rafael Mudafort", email = "[email protected]" }, | ||
{ name = "Paul Fleming", email = "[email protected]" }, | ||
{ name = "Michael (Misha) Sinner", email = "[email protected]" }, | ||
{ name = "Eric Simley", email = "[email protected]" }, | ||
{ name = "Christopher Bay", email = "[email protected]" }, | ||
] | ||
license = { file = "LICENSE.txt" } | ||
keywords = ["floris"] | ||
classifiers = [ | ||
"License :: OSI Approved :: BSD License", | ||
"Programming Language :: Python", | ||
"Programming Language :: Python :: 3", | ||
"Programming Language :: Python :: 3.8", | ||
"Programming Language :: Python :: 3.9", | ||
"Programming Language :: Python :: 3.10", | ||
"Programming Language :: Python :: Implementation :: CPython", | ||
"Programming Language :: Python :: Implementation :: PyPy" | ||
] | ||
dependencies = [ | ||
"attrs", | ||
"pyyaml~=6.0", | ||
"numexpr~=2.0", | ||
"numpy~=1.20", | ||
"scipy~=1.1", | ||
"matplotlib~=3.0", | ||
"pandas~=2.0", | ||
"shapely~=2.0", | ||
"coloredlogs~=15.0", | ||
"pathos~=0.3", | ||
] | ||
|
||
[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 = ["floris*"] | ||
|
||
[tool.setuptools.package-data] | ||
floris = [ | ||
"turbine_library/*.yaml", | ||
"core/wake_velocity/turbopark_lookup_table.mat" | ||
] | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/NREL/floris" | ||
Documentation = "https://nrel.github.io/floris/" | ||
|
||
[coverage.run] | ||
# Coverage.py configuration file | ||
|