-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathsetup.py
30 lines (28 loc) · 846 Bytes
/
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
from distutils.core import setup
setup(
name = "gmshtranslator",
packages = ["gmshtranslator"],
version = "0.1",
description = "gmsh .msh file parser",
author = "Jose Abell",
author_email = "[email protected]",
url = "http://www.joseabell.com",
download_url = "tbd",
keywords = ["parsing", "gmsh", "msh", "mesh generation"],
classifiers = [
"Programming Language :: Python",
"Programming Language :: Python :: 2",
"Development Status :: Beta",
"Environment :: Other Environment",
"Intended Audience :: GMSH Users",
"License :: GPL",
"Operating System :: OS Independent",
"Topic :: TBD",
"Topic :: TBD2",
],
long_description = """\
gmshtranslator
-------------------------------------
Parser for gmsh `.msh` files.
"""
)