aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--setup.py6
1 files changed, 3 insertions, 3 deletions
diff --git a/setup.py b/setup.py
index 737b9f6..d97f9b0 100644
--- a/setup.py
+++ b/setup.py
@@ -2,11 +2,10 @@ from setuptools import setup, find_packages
setup(
name="gsxws",
- version="0.52",
+ version="0.53",
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",
@@ -19,7 +18,8 @@ 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.52",
+ download_url="https://github.com/filipp/py-gsxws/tarball/0.53",
license="BSD",
packages=find_packages(),
+ package_data={'gsxws': ['products.yaml']}
)