forked from LHEEA/meshmagick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
47 lines (41 loc) · 1.57 KB
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""Setup script for meshmagick."""
from setuptools import setup, find_packages
import codecs
import os
HERE = os.path.abspath(os.path.dirname(__file__))
def read(*parts):
"""Return multiple read calls to different readable objects as a single
string."""
# intentionally *not* adding an encoding option to open
return codecs.open(os.path.join(HERE, *parts), 'r').read()
LONG_DESCRIPTION = read('README.rst')
setup(
name='meshmagick',
version='2.0',
url='https://github.com/LHEEA/meshmagick',
author='Francois Rongere -- Ecole Centrale de Nantes',
author_email='[email protected]',
description="""A command line tool to manipulate hydrodynamics meshes""",
long_description=LONG_DESCRIPTION,
license='GPLv3',
keywords='hydrodynamics, unstructured mesh, conversion, manipulation',
packages=find_packages(exclude=['contrib', 'doc', 'tests*']),
# setup_requires=['pytest-runner'],
# tests_require=['pytest', 'pytest-cov'],
install_requires=['numpy', 'argcomplete', 'vtk'],
entry_points={
'console_scripts': [
'meshmagick=meshmagick:main',
],
},
classifiers=[
'Programming Language :: Python',
'Development Status :: 5 - Production/Stable',
'Natural Language :: English',
'Intended Audience :: Science/Research',
'Topic :: Scientific/Engineering',
'Topic :: Software Development :: Libraries :: Python Modules',
'License :: OSI Approved :: GNU General Public License v3 (GPLv3)',
'Operating System :: OS Independent',
],
)