Skip to content

Commit

Permalink
chore: updated setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
vojtatom committed Apr 6, 2024
1 parent acdef8e commit c536c5f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# Numflow

C++ based tool for converting vector field data into models for rendering.
Python/C++ based tool for converting vector field data into models for rendering.

I made a [blogpost describing the design, there are also some outputs, see more here!](https://vojtatom.github.io/numflow.py)

Expand Down
8 changes: 4 additions & 4 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,9 +15,9 @@
import pathlib

# The directory containing this file
#HERE = pathlib.Path(__file__).parent
HERE = pathlib.Path(__file__).parent
# The text of the README file
#README = (HERE / "README.md").read_text()
README = (HERE / "README.md").read_text()

setup(
name="numflow",
Expand All @@ -26,8 +26,8 @@
author_email="hello@vojtatom.cz",
license="MIT",
description="Transforming vector fields",
#long_description=README,
#long_description_content_type="text/markdown",
long_description=README,
long_description_content_type="text/markdown",
packages=find_packages(where="src"),
package_dir={"": "src"},
cmake_install_dir="src/numflow",
Expand Down

0 comments on commit c536c5f

Please sign in to comment.