-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Use pyproject.toml and src rootdir (#48)
* Use pyproject.toml instead of setup.py
- Loading branch information
1 parent
d9452ba
commit 75a419e
Showing
6 changed files
with
78 additions
and
76 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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
name: Notify new issue | ||
# name: Notify new issue | ||
|
||
on: | ||
issues: | ||
types: | ||
- "opened" | ||
# on: | ||
# issues: | ||
# types: | ||
# - "opened" | ||
|
||
jobs: | ||
notify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify new issue | ||
uses: ecmwf-actions/notify-teams-issue@v1 | ||
with: | ||
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }} | ||
# jobs: | ||
# notify: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Notify new issue | ||
# uses: ecmwf-actions/notify-teams-issue@v1 | ||
# with: | ||
# incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }} |
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,15 +1,15 @@ | ||
name: Notify new PR | ||
# name: Notify new PR | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- "opened" | ||
# on: | ||
# pull_request_target: | ||
# types: | ||
# - "opened" | ||
|
||
jobs: | ||
notify: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Notify new PR | ||
uses: ecmwf-actions/notify-teams-pr@v1 | ||
with: | ||
incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }} | ||
# jobs: | ||
# notify: | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - name: Notify new PR | ||
# uses: ecmwf-actions/notify-teams-pr@v1 | ||
# with: | ||
# incoming_webhook: ${{ secrets.MS_TEAMS_INCOMING_WEBHOOK }} |
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 |
---|---|---|
@@ -1,43 +1,3 @@ | ||
[metadata] | ||
name = earthkit | ||
license = Apache License 2.0 | ||
url = https://github.com/ecmwf/earthkit | ||
author = European Centre for Medium-Range Weather Forecasts (ECMWF) | ||
author_email = software.support@ecmwf.int | ||
classifiers = | ||
Development Status :: 2 - Pre-Alpha | ||
Intended Audience :: Science/Research | ||
License :: OSI Approved :: Apache Software License | ||
Operating System :: OS Independent | ||
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 :: 3.11 | ||
Topic :: Scientific/Engineering | ||
long_description_content_type = text/markdown | ||
long_description = file: README.md | ||
test_suite = tests | ||
|
||
[options] | ||
python-requires = >=3.8 | ||
packages = find_namespace: | ||
install_requires = | ||
earthkit-data[all]>=0.7.0 | ||
earthkit-geo>=0.1.0 | ||
earthkit-maps>=0.0.18 | ||
earthkit-meteo>=0.1.0 | ||
earthkit-plots>=0.0.6 | ||
earthkit-regrid>=0.3.0 | ||
|
||
[options.packages.find] | ||
include = earthkit, earthkit.* | ||
|
||
[flake8] | ||
max-line-length = 110 | ||
extend-ignore = E203, W503 | ||
|
||
[mypy] | ||
strict = False | ||
ignore_missing_imports = True |
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