akextract/setup.py
Matthew Dillon (diogenes) 64b45a2f8d Renamed to 'AKExtract'
2013-09-16 20:37:44 -08:00

22 lines
520 B
Python
Executable file

# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
with open('README.md') as f:
readme = f.read()
with open('LICENSE') as f:
license = f.read()
setup(
name='AKExtract',
version='0.1.0',
description='Extract climate data from SNAP datasets',
long_description=readme,
author='Matthew Ryan Dillon',
author_email='matthewrdillon@gmail.com',
url='https://github.com/thermokarst/akextract',
license=license,
packages=find_packages(exclude=('tests', 'docs'))
)