Skip to content

Commit

Permalink
Fix imports and version number
Browse files Browse the repository at this point in the history
  • Loading branch information
gutzbenj committed Jun 19, 2020
1 parent b87975c commit a180b09
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 7 deletions.
7 changes: 3 additions & 4 deletions python_dwd/__init__.py
@@ -1,9 +1,8 @@
__version__ = '1.0'

from python_dwd.download.download import download_dwd_data
from python_dwd.metadata_dwd import metadata_for_dwd_data
from python_dwd.parsing_data.parse_data_from_files import parse_dwd_data
from python_dwd.file_path_handling.file_list_creation import \
create_file_list_for_dwd_server
from python_dwd.download.download import download_dwd_data
from python_dwd.parsing_data.parse_data_from_files import parse_dwd_data
from python_dwd.additionals.geo_location import get_nearest_station
from python_dwd.data_collection import collect_dwd_data
from python_dwd.dwd_station_request import DWDStationRequest
4 changes: 1 addition & 3 deletions setup.py
@@ -1,13 +1,11 @@
from setuptools import setup

from python_dwd import __version__

with open("README.md", 'r') as f:
long_description = f.read()

setup(
name='python_dwd',
version=__version__,
version="1.0.0",
description='A module for accessing data of the german weather service',
license='MIT',
long_description=long_description,
Expand Down

0 comments on commit a180b09

Please sign in to comment.