Skip to content

Commit

Permalink
Changed setup.py, fixed installation issue
Browse files Browse the repository at this point in the history
  • Loading branch information
Anish Patil committed Mar 3, 2015
1 parent 00d9b94 commit dd57f15
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"""
Build script for zanata-python-client
"""
from setuptools import setup
from setuptools import setup,find_packages
import os
import subprocess

Expand Down Expand Up @@ -42,15 +42,15 @@ def get_client_version():

setup (name = "zanata-python-client",
version = get_client_version(),
packages = ['zanataclient'],
packages = find_packages(),
include_package_data = True,
install_requires=[
'polib' ,
'httplib2'
],
description = "Zanata Python Client.",
author = 'Jian Ni, Ding-Yi Chen',
author_email = '[email protected], [email protected]',
author = 'Jian Ni, Ding-Yi Chen,Anish Patil',
author_email = '[email protected], [email protected],[email protected]',
license = 'LGPLv2+',
platforms=["Linux"],
scripts = ["zanata","flies"],
Expand Down

0 comments on commit dd57f15

Please sign in to comment.