Skip to content

Commit c536c5f

Browse files
committed
chore: updated setup.py
1 parent acdef8e commit c536c5f

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Numflow
22

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

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

setup.py

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,9 +15,9 @@
1515
import pathlib
1616

1717
# The directory containing this file
18-
#HERE = pathlib.Path(__file__).parent
18+
HERE = pathlib.Path(__file__).parent
1919
# The text of the README file
20-
#README = (HERE / "README.md").read_text()
20+
README = (HERE / "README.md").read_text()
2121

2222
setup(
2323
name="numflow",
@@ -26,8 +26,8 @@
2626
author_email="hello@vojtatom.cz",
2727
license="MIT",
2828
description="Transforming vector fields",
29-
#long_description=README,
30-
#long_description_content_type="text/markdown",
29+
long_description=README,
30+
long_description_content_type="text/markdown",
3131
packages=find_packages(where="src"),
3232
package_dir={"": "src"},
3333
cmake_install_dir="src/numflow",

0 commit comments

Comments
 (0)