Skip to content

Commit eb4a1ad

Browse files
committed
minor fixes
1 parent b886937 commit eb4a1ad

File tree

4 files changed

+36
-38
lines changed

4 files changed

+36
-38
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,10 @@
1414
<img alt="Coverage Status" src="https://coveralls.io/repos/github/mathLab/PyGeM/badge.svg?branch=master">
1515
</a>
1616
<a href="https://www.codacy.com/app/mathLab/PyGeM?utm_source=github.com&amp;utm_medium=referral&amp;utm_content=mathLab/PyGeM&amp;utm_campaign=Badge_Grade" target="_blank">
17-
<img alt="Codacy Badge" src="https://api.codacy.com/project/badge/Grade/6195fc94d5bc4a61988c401fc98484a9">
17+
<img alt="Codacy Badge" src="https://api.codacy.com/project/badge/Grade/7299abd9d61c4aa586903d80cea01c82">
1818
</a>
1919
</p>
2020

21-
2221
[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.
2322

2423
## Table of contents

code_formatter.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ done
4141

4242
# Here the important part: yapf format the files.
4343
for file in $python_files; do
44-
echo "Making beatiful $file..."
44+
echo "Making beautiful $file..."
4545
[[ ! -f $file ]] && echo "$file does not exist; $0 -h for more info" && exit
4646

4747
yapf --style='{

pygem/__init__.py

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
"""
2+
PyGeM init
23
"""
34
# __all__ = [
45
# 'affine', 'filehandler', 'freeform', 'radial', 'openfhandler',

setup.py

Lines changed: 33 additions & 35 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,37 @@
11
from setuptools import setup, find_packages
22

3+
34
def readme():
4-
"""
5-
This function just return the content of README.md
6-
"""
7-
with open('README.md') as f:
8-
return f.read()
5+
"""
6+
This function just return the content of README.md
7+
"""
8+
with open('README.md') as f:
9+
return f.read()
10+
911

10-
setup(name='pygem',
11-
version='0.2',
12-
description='Tools to apply FFD.',
13-
long_description=readme(),
14-
classifiers=[
15-
'Development Status :: 4 - Beta',
16-
'License :: OSI Approved :: MIT License',
17-
'Programming Language :: Python :: 2.7',
18-
'Intended Audience :: Science/Research',
19-
'Topic :: Scientific/Engineering :: Mathematics'
20-
],
21-
keywords='dimension_reduction mathematics ffd morphing iges stl vtk openfoam',
22-
url='https://github.com/mathLab/PyGeM',
23-
author='Marco Tezzele, Nicola Demo',
24-
25-
license='MIT',
26-
packages=find_packages(),
27-
install_requires=[
28-
'numpy',
29-
'numpy-stl',
30-
'scipy',
31-
'matplotlib',
32-
'enum34',
33-
'Sphinx==1.4',
34-
'sphinx_rtd_theme'
35-
],
36-
test_suite='nose.collector',
37-
tests_require=['nose'],
38-
include_package_data=True,
39-
zip_safe=False)
12+
setup(
13+
name='pygem',
14+
version='0.2',
15+
description='Tools for gemetrical morphing.',
16+
long_description=readme(),
17+
classifiers=[
18+
'Development Status :: 4 - Beta',
19+
'License :: OSI Approved :: MIT License',
20+
'Programming Language :: Python :: 2.7',
21+
'Intended Audience :: Science/Research',
22+
'Topic :: Scientific/Engineering :: Mathematics'
23+
],
24+
keywords='dimension_reduction mathematics ffd morphing iges stl vtk openfoam',
25+
url='https://github.com/mathLab/PyGeM',
26+
author='Marco Tezzele, Nicola Demo',
27+
28+
license='MIT',
29+
packages=find_packages(),
30+
install_requires=[
31+
'numpy', 'numpy-stl', 'scipy', 'matplotlib', 'vtk', 'enum34',
32+
'Sphinx==1.4', 'sphinx_rtd_theme'
33+
],
34+
test_suite='nose.collector',
35+
tests_require=['nose'],
36+
include_package_data=True,
37+
zip_safe=False)

0 commit comments

Comments
 (0)