-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
6 changed files
with
65 additions
and
71 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
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,7 +1,5 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
Python client to retrieve data provided by DWD via their geoserver WFS API | ||
""" | ||
"""Python client to retrieve data provided by DWD via their WFS API.""" | ||
|
||
from .weatherwarnings import DwdWeatherWarningsAPI | ||
from .weatherwarnings import DwdWeatherWarningsAPI # noqa: F401 |
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,20 +1,21 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
Setup for dwdwfsapi package | ||
""" | ||
"""Setup for dwdwfsapi package.""" | ||
|
||
from setuptools import setup, find_packages | ||
|
||
# Package meta-data | ||
NAME = "dwdwfsapi" | ||
DESCRIPTION = "Python client to retrieve data provided by DWD via their geoserver WFS API" | ||
DESCRIPTION = ( | ||
"Python client to retrieve data provided by DWD via their geoserver " | ||
"WFS API" | ||
) | ||
KEYWORDS = "dwd ows wfs deutscher wetterdienst" | ||
URL = "https://github.com/stephan192/dwdwfsapi" | ||
EMAIL = "[email protected]" | ||
AUTHOR = "stephan192" | ||
REQUIRES_PYTHON = ">=3.6" | ||
VERSION = "1.0.1" | ||
VERSION = "1.0.2" | ||
|
||
# Define required packages | ||
REQUIRES = ["requests>=2.23.0,<3", "ciso8601>=2.1.3,<3", "urllib3>=1.25.8,<2"] | ||
|
@@ -36,6 +37,7 @@ | |
packages=find_packages(), | ||
install_requires=REQUIRES, | ||
keywords=KEYWORDS, | ||
license="MIT", | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Programming Language :: Python :: 3", | ||
|
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