-
Notifications
You must be signed in to change notification settings - Fork 133
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 #276 from ocefpaf/remove_setuppy
Remove setuppy
- Loading branch information
Showing
8 changed files
with
117 additions
and
100 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 |
---|---|---|
|
@@ -9,3 +9,7 @@ updates: | |
interval: "daily" | ||
labels: | ||
- "Bot" | ||
groups: | ||
github-actions: | ||
patterns: | ||
- '*' |
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 |
---|---|---|
|
@@ -6,6 +6,59 @@ requires = [ | |
"wheel", | ||
] | ||
|
||
[project] | ||
name = "windrose" | ||
description = "Python Matplotlib, Numpy library to manage wind data, draw windrose (also known as a polar rose plot)" | ||
readme = "README.md" | ||
license = { text = "BSD-3-Clause OR BCeCILL-B" } | ||
maintainers = [ | ||
{ name = "Sebastien Celles" }, | ||
{ name = "Filipe Fernandes", email = "[email protected]" }, | ||
] | ||
authors = [ | ||
{ name = "Lionel Roubeyrie", email = "[email protected]" }, | ||
] | ||
requires-python = ">=3.8" | ||
classifiers = [ | ||
"Programming Language :: Python :: 3 :: Only", | ||
"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", | ||
] | ||
dynamic = [ | ||
"version", | ||
] | ||
dependencies = [ | ||
"matplotlib>=3", | ||
"numpy>=1.21", | ||
] | ||
optional-dependencies.extras = [ | ||
"pandas", | ||
"scipy", | ||
] | ||
urls.documentation = "https://python-windrose.github.io/windrose" | ||
urls.homepage = "https://github.com/python-windrose/windrose" | ||
urls.repository = "https://github.com/python-windrose/windrose" | ||
|
||
[tool.setuptools] | ||
packages = [ "windrose" ] | ||
include-package-data = true | ||
license-files = [ | ||
"LICENSE.txt", | ||
"LICENCE_BSD-3-Clause.txt", | ||
"LICENCE_CECILL-B.txt", | ||
] | ||
[tool.setuptools.dynamic] | ||
dependencies = { file = [ "requirements.txt" ] } | ||
readme = { file = "README.md", content-type = "text/markdown" } | ||
|
||
[tool.setuptools_scm] | ||
write_to = "windrose/_version.py" | ||
write_to_template = "__version__ = '{version}'" | ||
tag_regex = "^(?P<prefix>v)?(?P<version>[^\\+]+)(?P<suffix>.*)?$" | ||
|
||
[tool.ruff] | ||
target-version = "py38" | ||
line-length = 79 | ||
|
@@ -29,6 +82,23 @@ lint.per-file-ignores."samples/example_pdf_by.py" = [ | |
"T201", | ||
] | ||
|
||
[tool.check-manifest] | ||
ignore = [ | ||
"*.yaml", | ||
".coveragerc", | ||
"docs", | ||
"docs/*", | ||
"notebooks", | ||
"notebooks/*", | ||
"tests", | ||
"tests/*", | ||
"paper", | ||
"paper/*", | ||
"*.pyc", | ||
".binder/", | ||
".binder/*", | ||
] | ||
|
||
[tool.interrogate] | ||
ignore-init-method = true | ||
ignore-init-module = false | ||
|
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