diff options
author | Filipp Lepalaan <filipp@mac.com> | 2015-01-07 15:33:59 +0200 |
---|---|---|
committer | Filipp Lepalaan <filipp@mac.com> | 2015-01-07 15:33:59 +0200 |
commit | e51c8003f3accb4f803c8a0e1dc42d1fea5d56f4 (patch) | |
tree | 33b9c953c08a2dde80498ae2d208b2aa29fd9d3b /setup.py | |
parent | f68f5a40a70c3d140860edd21d7d8bcec13c5d41 (diff) | |
download | py-gsxws-e51c8003f3accb4f803c8a0e1dc42d1fea5d56f4.tar.gz py-gsxws-e51c8003f3accb4f803c8a0e1dc42d1fea5d56f4.tar.bz2 py-gsxws-e51c8003f3accb4f803c8a0e1dc42d1fea5d56f4.zip |
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,9 +2,11 @@ from setuptools import setup, find_packages setup( name="gsxws", - version="0.51", + version="0.52", description="Library for communicating with GSX Web Services API.", + long_description=open('README.rst').read(), install_requires=['PyYAML', 'lxml'], + data_files=[('', 'products.yaml')], classifiers=[ "Environment :: Web Environment", "Intended Audience :: Developers", @@ -17,7 +19,7 @@ setup( author="Filipp Lepalaan", author_email="filipp@fps.ee", url="https://github.com/filipp/py-gsxws", - download_url="https://github.com/filipp/py-gsxws/tarball/0.51", + download_url="https://github.com/filipp/py-gsxws/tarball/0.52", license="BSD", packages=find_packages(), ) |