Skip to content

Commit

Permalink
Change team information to menpo team
Browse files Browse the repository at this point in the history
Also just a small amount of style clean up
  • Loading branch information
patricksnape committed Aug 1, 2016
1 parent 6be1aec commit 9efdfc5
Showing 1 changed file with 11 additions and 10 deletions.
21 changes: 11 additions & 10 deletions setup.py
Expand Up @@ -14,12 +14,14 @@


# ---- C/C++ EXTENSIONS ---- #
cython_modules = ['menpo/shape/mesh/normals.pyx',
'menpo/transform/piecewiseaffine/fastpwa.pyx',
'menpo/feature/windowiterator.pyx',
'menpo/feature/gradient.pyx',
'menpo/external/skimage/_warps_cy.pyx',
'menpo/image/patches.pyx']
cython_modules = [
'menpo/external/skimage/_warps_cy.pyx',
'menpo/transform/piecewiseaffine/fastpwa.pyx',
'menpo/feature/windowiterator.pyx',
'menpo/feature/gradient.pyx',
'menpo/image/patches.pyx',
'menpo/shape/mesh/normals.pyx'
]

cython_exts = cythonize(cython_modules, quiet=True)
# Perform a small amount of gymnastics to improve the compilation output on
Expand All @@ -37,7 +39,7 @@
'scipy>=0.16,<1.0',
'matplotlib>=1.4,<2.0',
'pillow>=3.0,<4.0',
'Cython>=0.23']
'cython>=0.23']

if sys.version_info.major == 2:
install_requires.append('pathlib==1.0')
Expand All @@ -46,9 +48,8 @@
version=versioneer.get_version(),
cmdclass=versioneer.get_cmdclass(),
description='A Python toolkit for handling annotated data',
author='James Booth',
author_email='james.booth08@imperial.ac.uk',
include_dirs=include_dirs,
author='The Menpo Team',
author_email='hello@menpo.org',
ext_modules=cython_exts,
packages=find_packages(),
install_requires=install_requires,
Expand Down

0 comments on commit 9efdfc5

Please sign in to comment.