-
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
Showing
13 changed files
with
36 additions
and
36 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 |
---|---|---|
|
@@ -3,12 +3,12 @@ _commit: v0.1.0-8-ga0c8676 | |
_src_path: gh:alan-turing-institute/python-project-template | ||
coc: our_coc | ||
email: [email protected] | ||
full_name: Cloudcast Maintainers | ||
full_name: cloudcasting Maintainers | ||
license: MIT | ||
min_python_version: '3.10' | ||
org: climetrend | ||
project_name: cloudcast | ||
project_name: cloudcasting | ||
project_short_description: Tooling and infrastructure to enable cloud nowcasting. | ||
python_name: cloudcast | ||
python_name: cloudcasting | ||
typing: strict | ||
url: https://github.com/climetrend/cloudcast | ||
url: https://github.com/climetrend/cloudcasting |
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
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,10 +4,10 @@ build-backend = "setuptools.build_meta" | |
|
||
|
||
[project] | ||
name = "cloudcast" | ||
name = "cloudcasting" | ||
version = "0.1.0" | ||
authors = [ | ||
{ name = "Cloudcast Maintainers", email = "[email protected]" }, | ||
{ name = "cloudcasting Maintainers", email = "[email protected]" }, | ||
] | ||
description = "Tooling and infrastructure to enable cloud nowcasting." | ||
readme = "README.md" | ||
|
@@ -46,13 +46,13 @@ dev = [ | |
] | ||
|
||
[project.scripts] | ||
cloudcast = "cloudcast.cli:app" | ||
cloudcasting = "cloudcasting.cli:app" | ||
|
||
[project.urls] | ||
Homepage = "https://github.com/climetrend/cloudcast" | ||
"Bug Tracker" = "https://github.com/climetrend/cloudcast/issues" | ||
Discussions = "https://github.com/climetrend/cloudcast/discussions" | ||
Changelog = "https://github.com/climetrend/cloudcast/releases" | ||
Homepage = "https://github.com/climetrend/cloudcasting" | ||
"Bug Tracker" = "https://github.com/climetrend/cloudcasting/issues" | ||
Discussions = "https://github.com/climetrend/cloudcasting/discussions" | ||
Changelog = "https://github.com/climetrend/cloudcasting/releases" | ||
|
||
[tool.pytest.ini_options] | ||
minversion = "6.0" | ||
|
@@ -67,7 +67,7 @@ testpaths = [ | |
] | ||
|
||
[tool.coverage] | ||
run.source = ["cloudcast"] | ||
run.source = ["cloudcasting"] | ||
port.exclude_lines = [ | ||
'pragma: no cover', | ||
'\.\.\.', | ||
|
@@ -86,7 +86,7 @@ strict = true | |
enable_error_code = ["ignore-without-code", "redundant-expr", "truthy-bool"] | ||
|
||
[[tool.mypy.overrides]] | ||
module = "cloudcast.*" | ||
module = "cloudcasting.*" | ||
disallow_untyped_defs = true | ||
disallow_incomplete_defs = true | ||
|
||
|
@@ -98,8 +98,8 @@ ignore_missing_imports = true | |
|
||
[[tool.mypy.overrides]] | ||
module = [ | ||
"cloudcast.download", | ||
"cloudcast.cli", | ||
"cloudcasting.download", | ||
"cloudcasting.cli", | ||
] | ||
disallow_untyped_calls = false | ||
|
||
|
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,12 +1,12 @@ | ||
""" | ||
cloudcast: Tooling and infrastructure to enable cloud nowcasting. | ||
cloudcasting: Tooling and infrastructure to enable cloud nowcasting. | ||
""" | ||
|
||
from __future__ import annotations | ||
|
||
from importlib.metadata import version | ||
|
||
from cloudcast import cli, download | ||
from cloudcasting import cli, download | ||
|
||
__all__ = ("__version__", "download", "cli") | ||
__version__ = version(__name__) |
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,3 @@ | ||
from cloudcasting.cli import app | ||
|
||
app() |
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.
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