Skip to content
This repository has been archived by the owner on Feb 26, 2020. It is now read-only.

Commit

Permalink
removed EOLs and tabs
Browse files Browse the repository at this point in the history
  • Loading branch information
tarekziade committed Sep 24, 2012
1 parent c093fa3 commit 2e05891
Show file tree
Hide file tree
Showing 2 changed files with 80 additions and 80 deletions.
12 changes: 6 additions & 6 deletions MANIFEST.in
@@ -1,6 +1,6 @@
include tests/*.py
include README
include python/*.cpp
include python/*.h
include lib/*.cpp
include lib/*.h
include tests/*.py
include README
include python/*.cpp
include python/*.h
include lib/*.cpp
include lib/*.h
148 changes: 74 additions & 74 deletions setup.py
@@ -1,74 +1,74 @@
"""
Copyright (c) 2011-2012, Jonas Tarnstrom and ESN Social Software AB
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by ESN Social Software AB (www.esn.me).
4. Neither the name of the ESN Social Software AB nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY ESN SOCIAL SOFTWARE AB ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL ESN SOCIAL SOFTWARE AB BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""


from distutils.core import setup, Extension
import shutil
import sys

CLASSIFIERS = filter(None, map(str.strip,
"""
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
""".splitlines()))
libs = []

if sys.platform != "win32":
libs.append("stdc++")
if sys.platform == "win32":
libs.append("ws2_32")

module1 = Extension('umemcache',
sources = ['./python/umemcache.cpp', './lib/PacketReader.cpp', './lib/PacketWriter.cpp', './lib/Client.cpp'],
include_dirs = ['./lib/'],
library_dirs = [],
libraries=libs,
define_macros=[('WIN32_LEAN_AND_MEAN', None)])
setup (name = 'umemcache',
version = "1.5",
description = "Ultra fast memcache client written in highly optimized C++ with Python bindings",
ext_modules = [module1],
author="Jonas Tarnstrom",
author_email="jonas.tarnstrom@esn.me",
download_url="http://github.com/esnme/ultramemcache",
license="BSD License",
platforms=['any'],
url="http://www.esn.me",
classifiers=CLASSIFIERS,
)
"""
Copyright (c) 2011-2012, Jonas Tarnstrom and ESN Social Software AB
All rights reserved.
Redistribution and use in source and binary forms, with or without
modification, are permitted provided that the following conditions are met:
1. Redistributions of source code must retain the above copyright
notice, this list of conditions and the following disclaimer.
2. Redistributions in binary form must reproduce the above copyright
notice, this list of conditions and the following disclaimer in the
documentation and/or other materials provided with the distribution.
3. All advertising materials mentioning features or use of this software
must display the following acknowledgement:
This product includes software developed by ESN Social Software AB (www.esn.me).
4. Neither the name of the ESN Social Software AB nor the
names of its contributors may be used to endorse or promote products
derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY ESN SOCIAL SOFTWARE AB ''AS IS'' AND ANY
EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
DISCLAIMED. IN NO EVENT SHALL ESN SOCIAL SOFTWARE AB BE LIABLE FOR ANY
DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
(INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
(INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
"""


from distutils.core import setup, Extension
import shutil
import sys

CLASSIFIERS = filter(None, map(str.strip,
"""
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: BSD License
Programming Language :: C
Programming Language :: Python :: 2.6
Programming Language :: Python :: 2.7
""".splitlines()))

libs = []

if sys.platform != "win32":
libs.append("stdc++")

if sys.platform == "win32":
libs.append("ws2_32")

module1 = Extension('umemcache',
sources = ['./python/umemcache.cpp', './lib/PacketReader.cpp', './lib/PacketWriter.cpp', './lib/Client.cpp'],
include_dirs = ['./lib/'],
library_dirs = [],
libraries=libs,
define_macros=[('WIN32_LEAN_AND_MEAN', None)])

setup (name = 'umemcache',
version = "1.5",
description = "Ultra fast memcache client written in highly optimized C++ with Python bindings",
ext_modules = [module1],
author="Jonas Tarnstrom",
author_email="jonas.tarnstrom@esn.me",
download_url="http://github.com/esnme/ultramemcache",
license="BSD License",
platforms=['any'],
url="http://www.esn.me",
classifiers=CLASSIFIERS,
)


0 comments on commit 2e05891

Please sign in to comment.