This repository has been archived on 2022-08-04. You can view files and clone it, but cannot push or open issues or pull requests.
python-usda/setup.py
Shane 98049f6fd8 Expanding "README" and changing dev version number
Expanding "README" and changing dev version number
2015-05-17 22:55:06 -04:00

12 lines
352 B
Python

__author__ = 'scarroll'
from distutils.core import setup
setup(
name='pygov',
version='0.5dev',
packages=['pygov', 'pygov.usda', 'pygov.base'],
license='The MIT License (MIT)',
description='pygov enables easy access to the US Government''s data APIs (http://api.data.gov/docs/).',
long_description=open('README.rst').read(),
)