Skip to content

Commit dd57f15

Browse files
author
Anish Patil
committed
Changed setup.py, fixed installation issue
1 parent 00d9b94 commit dd57f15

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"""
33
Build script for zanata-python-client
44
"""
5-
from setuptools import setup
5+
from setuptools import setup,find_packages
66
import os
77
import subprocess
88

@@ -42,15 +42,15 @@ def get_client_version():
4242

4343
setup (name = "zanata-python-client",
4444
version = get_client_version(),
45-
packages = ['zanataclient'],
45+
packages = find_packages(),
4646
include_package_data = True,
4747
install_requires=[
4848
'polib' ,
4949
'httplib2'
5050
],
5151
description = "Zanata Python Client.",
52-
author = 'Jian Ni, Ding-Yi Chen',
53-
author_email = 'jni@redhat.com, dchen@redhat.com',
52+
author = 'Jian Ni, Ding-Yi Chen,Anish Patil',
53+
author_email = 'jni@redhat.com, dchen@redhat.com,apatil@redhat.com',
5454
license = 'LGPLv2+',
5555
platforms=["Linux"],
5656
scripts = ["zanata","flies"],

0 commit comments

Comments
 (0)