We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9affd5d commit b4b7843Copy full SHA for b4b7843
setup.py
@@ -26,13 +26,9 @@
26
:copyright: © 2011 by Openlabs Technologies & Consulting (P) Limited
27
:license: BSD, see LICENSE for more details.
28
"""
29
-import os
30
from setuptools import setup
31
32
33
-def read(fname):
34
- return open(os.path.join(os.path.dirname(__file__), fname)).read()
35
-
36
setup(
37
name="microsofttranslator",
38
version="0.6",
@@ -45,7 +41,7 @@ def read(fname):
45
41
author="Openlabs Technologies & Consulting (P) Limited",
46
42
author_email="info@openlabs.co.in",
47
43
description="Microsoft Translator V2 - Python API",
48
- long_description=read('README.rst'),
44
+ long_description=open('README.rst').read(),
49
license="BSD",
50
keywords="translation microsoft",
51
url="http://openlabs.co.in/",
0 commit comments