Skip to content

Commit

Permalink
Initial commit
Browse files Browse the repository at this point in the history
  • Loading branch information
kinverarity1 committed Feb 11, 2020
1 parent 4abd102 commit a20c387
Show file tree
Hide file tree
Showing 3 changed files with 29 additions and 0 deletions.
7 changes: 7 additions & 0 deletions ausweather/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
from pkg_resources import get_distribution, DistributionNotFound

try:
__version__ = get_distribution(__name__).version
except DistributionNotFound:
# package is not installed
pass
Empty file added ausweather/bom.py
Empty file.
22 changes: 22 additions & 0 deletions setup.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
from setuptools import setup

setup(
name="ausweather",
packages=["ausweather"],
use_scm_version=True,
setup_requires=["setuptools_scm"],
description="Access historical weather data in Australia",
long_description=open("README.md", mode="r").read(),
long_description_content_type="text/markdown",
url="https://github.com/kinverarity1/ausweather",
author="Kent Inverarity",
author_email="[email protected]",
license="MIT",
classifiers=(
"Programming Language :: Python :: 3",
"Topic :: Scientific/Engineering",
),
keywords="science",
install_requires=("pandas", "requests"),
include_package_data=True,
)

0 comments on commit a20c387

Please sign in to comment.