Skip to content

Commit 9626578

Browse files
authored
Merge pull request neuralhydrology#4 from neuralhydrology/staging
Update setup.py module list and metadata
2 parents f1ff185 + 5e4903a commit 9626578

File tree

3 files changed

+31
-7
lines changed

3 files changed

+31
-7
lines changed

.github/workflows/package-install.yml

+20
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
1+
name: test package installation
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-latest
11+
12+
steps:
13+
- uses: actions/checkout@v2
14+
15+
- uses: actions/setup-python@v2
16+
with:
17+
python-version: '3.8'
18+
19+
- name: Try installing the package
20+
run: pip install --no-deps .

neuralhydrology/__about__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "0.9.3-beta"
1+
__version__ = "0.9.3-beta.2"

setup.py

+10-6
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,16 @@
1616
setup(name='neuralhydrology',
1717
version=about["__version__"],
1818
packages=[
19-
'neuralhydrology', 'neuralhydrology.data', 'neuralhydrology.utils', 'neuralhydrology.modelzoo',
20-
'neuralhydrology.training', 'neuralhydrology.evaluation'
19+
'neuralhydrology', 'neuralhydrology.datasetzoo', 'neuralhydrology.datautils', 'neuralhydrology.utils',
20+
'neuralhydrology.modelzoo', 'neuralhydrology.training', 'neuralhydrology.evaluation'
2121
],
22-
url='neuralhydrology.readthedocs.io',
23-
license='',
24-
author='Frederik Kratzert',
25-
author_email='f.kratzert@gmail.com',
22+
url='https://neuralhydrology.readthedocs.io',
23+
project_urls={
24+
'Documentation': 'https://neuralhydrology.readthedocs.io',
25+
'Source': 'https://github.com/neuralhydrology/neuralhydrology',
26+
'Research Blog': 'https://neuralhydrology.github.io/'
27+
},
28+
author='Frederik Kratzert <f.kratzert@gmail.com>, Daniel Klotz, Martin Gauch',
2629
description='Library for training deep learning models with environmental focus',
2730
long_description=long_description,
2831
long_description_content_type='text/markdown',
@@ -50,5 +53,6 @@
5053
'Operating System :: OS Independent',
5154
'Topic :: Scientific/Engineering :: Artificial Intelligence',
5255
'Topic :: Scientific/Engineering :: Hydrology',
56+
'License :: OSI Approved :: BSD License',
5357
],
5458
keywords='deep learning hydrology lstm neural network streamflow discharge rainfall-runoff')

0 commit comments

Comments
 (0)