diff --git a/setup.py b/setup.py index 37999b4..14f57eb 100644 --- a/setup.py +++ b/setup.py @@ -33,16 +33,6 @@ def run(self): src_list += glob(os.path.join(lzo_dir, "src/*.c")) setup( - name="python-lzo", - version="1.16", - description="Python bindings for the LZO data compression library", - author="Markus F.X.J. Oberhumer", - author_email="markus@oberhumer.com", - maintainer="Joshua D. Boyd", - maintainer_email="jdboyd@jdboyd.net", - url="https://github.com/jd-boyd/python-lzo", - license="GNU General Public License (GPL)", - tests_require=['pytest'], cmdclass={ "test": TestCommand }, @@ -56,12 +46,4 @@ def run(self): #extra_link_args=["-flat_namespace"] if sys.platform == "darwin" else [], ) ], - long_description=""" -This module provides Python bindings for the LZO data compression library. -LZO is a portable lossless data compression library written in ANSI C. -It offers pretty fast compression and *very* fast decompression. -Decompression requires no memory. -In addition there are slower compression levels achieving a quite -competitive compression ratio while still decompressing at -this very high speed.""", )