-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Changed setup.py, fixed installation issue
- Loading branch information
Anish Patil
committed
Mar 3, 2015
1 parent
00d9b94
commit dd57f15
Showing
1 changed file
with
4 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ | |
""" | ||
Build script for zanata-python-client | ||
""" | ||
from setuptools import setup | ||
from setuptools import setup,find_packages | ||
import os | ||
import subprocess | ||
|
||
|
@@ -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"], | ||
|