Skip to content

Commit

Permalink
Merge pull request neuralhydrology#4 from neuralhydrology/staging
Browse files Browse the repository at this point in the history
Update setup.py module list and metadata
  • Loading branch information
gauchm authored Oct 8, 2020
2 parents f1ff185 + 5e4903a commit 9626578
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 7 deletions.
20 changes: 20 additions & 0 deletions .github/workflows/package-install.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: test package installation

on:
pull_request:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- uses: actions/setup-python@v2
with:
python-version: '3.8'

- name: Try installing the package
run: pip install --no-deps .
2 changes: 1 addition & 1 deletion neuralhydrology/__about__.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.9.3-beta"
__version__ = "0.9.3-beta.2"
16 changes: 10 additions & 6 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,13 +16,16 @@
setup(name='neuralhydrology',
version=about["__version__"],
packages=[
'neuralhydrology', 'neuralhydrology.data', 'neuralhydrology.utils', 'neuralhydrology.modelzoo',
'neuralhydrology.training', 'neuralhydrology.evaluation'
'neuralhydrology', 'neuralhydrology.datasetzoo', 'neuralhydrology.datautils', 'neuralhydrology.utils',
'neuralhydrology.modelzoo', 'neuralhydrology.training', 'neuralhydrology.evaluation'
],
url='neuralhydrology.readthedocs.io',
license='',
author='Frederik Kratzert',
author_email='[email protected]',
url='https://neuralhydrology.readthedocs.io',
project_urls={
'Documentation': 'https://neuralhydrology.readthedocs.io',
'Source': 'https://github.com/neuralhydrology/neuralhydrology',
'Research Blog': 'https://neuralhydrology.github.io/'
},
author='Frederik Kratzert <[email protected]>, Daniel Klotz, Martin Gauch',
description='Library for training deep learning models with environmental focus',
long_description=long_description,
long_description_content_type='text/markdown',
Expand Down Expand Up @@ -50,5 +53,6 @@
'Operating System :: OS Independent',
'Topic :: Scientific/Engineering :: Artificial Intelligence',
'Topic :: Scientific/Engineering :: Hydrology',
'License :: OSI Approved :: BSD License',
],
keywords='deep learning hydrology lstm neural network streamflow discharge rainfall-runoff')

0 comments on commit 9626578

Please sign in to comment.