File tree Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Expand file tree Collapse file tree 2 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Numflow
2
2
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.
4
4
5
5
I made a [ blogpost describing the design, there are also some outputs, see more here!] ( https://vojtatom.github.io/numflow.py )
6
6
Original file line number Diff line number Diff line change 15
15
import pathlib
16
16
17
17
# The directory containing this file
18
- # HERE = pathlib.Path(__file__).parent
18
+ HERE = pathlib .Path (__file__ ).parent
19
19
# The text of the README file
20
- # README = (HERE / "README.md").read_text()
20
+ README = (HERE / "README.md" ).read_text ()
21
21
22
22
setup (
23
23
name = "numflow" ,
26
26
author_email = "hello@vojtatom.cz" ,
27
27
license = "MIT" ,
28
28
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" ,
31
31
packages = find_packages (where = "src" ),
32
32
package_dir = {"" : "src" },
33
33
cmake_install_dir = "src/numflow" ,
You can’t perform that action at this time.
0 commit comments