You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

13 lines
447 B
Python

6 years ago
from setuptools import setup
setup(
name='waternsw_grabber',
6 years ago
version='0.3.1',
6 years ago
packages=['waternsw_grabber'],
6 years ago
package_data={'waternsw_grabber': ['data/telemetered-sites.csv']},
include_package_data=True,
6 years ago
install_requires=['pandas', 'selenium', 'requests', 'lxml', 'tqdm'],
author='Dan Howe',
author_email='d.howe@wrl.unsw.edu.au',
description='Download bore records from the WaterNSW data portal.')