diff --git a/README.md b/README.md index d2c5407..c1e4433 100644 --- a/README.md +++ b/README.md @@ -14,11 +14,10 @@ Coverage Status - Codacy Badge + Codacy Badge

- [PyGeM](http://mathlab.github.io/PyGeM/) (Python Geometrical Morphing) is a python package that allows you to deform a given geometry or mesh with different deformation techniques such as FFD, RBF and IDW. ## Table of contents diff --git a/code_formatter.sh b/code_formatter.sh index 9b2d981..3f2945e 100755 --- a/code_formatter.sh +++ b/code_formatter.sh @@ -41,7 +41,7 @@ done # Here the important part: yapf format the files. for file in $python_files; do - echo "Making beatiful $file..." + echo "Making beautiful $file..." [[ ! -f $file ]] && echo "$file does not exist; $0 -h for more info" && exit yapf --style='{ diff --git a/pygem/__init__.py b/pygem/__init__.py index 78c5d4c..9e6868f 100644 --- a/pygem/__init__.py +++ b/pygem/__init__.py @@ -1,4 +1,5 @@ """ +PyGeM init """ # __all__ = [ # 'affine', 'filehandler', 'freeform', 'radial', 'openfhandler', diff --git a/setup.py b/setup.py index 1f48632..c1e6ac0 100644 --- a/setup.py +++ b/setup.py @@ -1,39 +1,37 @@ from setuptools import setup, find_packages + def readme(): - """ - This function just return the content of README.md - """ - with open('README.md') as f: - return f.read() + """ + This function just return the content of README.md + """ + with open('README.md') as f: + return f.read() + -setup(name='pygem', - version='0.2', - description='Tools to apply FFD.', - long_description=readme(), - classifiers=[ - 'Development Status :: 4 - Beta', - 'License :: OSI Approved :: MIT License', - 'Programming Language :: Python :: 2.7', - 'Intended Audience :: Science/Research', - 'Topic :: Scientific/Engineering :: Mathematics' - ], - keywords='dimension_reduction mathematics ffd morphing iges stl vtk openfoam', - url='https://github.com/mathLab/PyGeM', - author='Marco Tezzele, Nicola Demo', - author_email='marcotez@gmail.com, demo.nicola@gmail.com', - license='MIT', - packages=find_packages(), - install_requires=[ - 'numpy', - 'numpy-stl', - 'scipy', - 'matplotlib', - 'enum34', - 'Sphinx==1.4', - 'sphinx_rtd_theme' - ], - test_suite='nose.collector', - tests_require=['nose'], - include_package_data=True, - zip_safe=False) +setup( + name='pygem', + version='0.2', + description='Tools for gemetrical morphing.', + long_description=readme(), + classifiers=[ + 'Development Status :: 4 - Beta', + 'License :: OSI Approved :: MIT License', + 'Programming Language :: Python :: 2.7', + 'Intended Audience :: Science/Research', + 'Topic :: Scientific/Engineering :: Mathematics' + ], + keywords='dimension_reduction mathematics ffd morphing iges stl vtk openfoam', + url='https://github.com/mathLab/PyGeM', + author='Marco Tezzele, Nicola Demo', + author_email='marcotez@gmail.com, demo.nicola@gmail.com', + license='MIT', + packages=find_packages(), + install_requires=[ + 'numpy', 'numpy-stl', 'scipy', 'matplotlib', 'vtk', 'enum34', + 'Sphinx==1.4', 'sphinx_rtd_theme' + ], + test_suite='nose.collector', + tests_require=['nose'], + include_package_data=True, + zip_safe=False)