forked from lamBOOO/fenicsR13
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (23 loc) · 745 Bytes
/
setup.py
File metadata and controls
26 lines (23 loc) · 745 Bytes
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
"Setup file"
from setuptools import setup
def readme(): # pylint: disable=missing-function-docstring
with open('README.rst') as file:
return file.read()
setup(
name="fenicsR13",
version="1.5",
description="FEniCS (FEM) Solver for Non.-Eq.-Gases Based on R13 Equations",
long_description=readme(),
url="https://git.rwth-aachen.de/lamBOO/fenicsR13",
author="Lambert Theisen, Manuel Torrilhon",
author_email="lambert.theisen@rwth-aachen.de, mt@mathcces.rwth-aachen.de",
license="None",
packages=["fenicsR13"],
zip_safe=False,
entry_points={
"console_scripts": [
"fenicsR13=fenicsR13.fenicsR13:main",
"geoToH5=fenicsR13.geoToH5:geo_to_h5"
],
}
)