Skip to content

Commit

Permalink
setup: minor improvements
Browse files Browse the repository at this point in the history
  • Loading branch information
tdegeus committed Oct 29, 2022
1 parent ec04c00 commit 2fff601
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
2 changes: 1 addition & 1 deletion GooseFEM.pc.in
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ includedir=${prefix}/include

Name: @PROJECT_NAME@
Description: Finite Element simulation, some simple meshes and operations.
Version: @GooseFEM_VERSION@
Version: @PROJECT_VERSION@
Cflags: -I${includedir}
7 changes: 6 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,12 +1,17 @@
from pathlib import Path

from setuptools_scm import get_version
from skbuild import setup

project_name = "GooseFEM"

this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()

setup(
name=project_name,
description="Finite element meshes, quadrature, and assembly tools",
long_description="Finite element meshes, quadrature, and assembly tools",
long_description=long_description,
version=get_version(),
license="GPLv3",
author="Tom de Geus",
Expand Down

0 comments on commit 2fff601

Please sign in to comment.