Skip to content

Commit 6aa1790

Browse files
committed
fix manifest
1 parent df23a53 commit 6aa1790

3 files changed

Lines changed: 6 additions & 7 deletions

File tree

MANIFEST.in

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
include src/domain.hpp
2+
include src/generate.hpp
3+
include src/generate_2d.hpp
24
include src/generate_from_inr.hpp
35
include src/generate_from_off.hpp
46
include src/generate_periodic.hpp
5-
include src/generate.hpp
6-
include src/generate_2d.hpp
77
include src/generate_surface_mesh.hpp
88
include src/polygon2d.hpp
99
include src/primitives.hpp
1010
include src/remesh_surface.hpp
1111
include src/sizing_field.hpp
1212

13-
include tests/helpers.py
13+
include tests/*.py
1414
recursive-include tests/meshes *

justfile

Lines changed: 2 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,8 @@ upload: clean
1515
publish: tag upload
1616

1717
clean:
18-
@find . | grep -E "(__pycache__|\.pyc|\.pyo$\)" | xargs rm -rf
19-
@rm -rf build/*
20-
@rm -rf pygalmesh.egg-info/
21-
@rm -rf dist/
18+
@find . | grep -E "(__pycache__|\.pyc|\.pyo$)" | xargs rm -rf
19+
@rm -rf src/*.egg-info/ build/ dist/ .tox/ pygalmesh.egg-info//
2220

2321
format:
2422
isort .

tox.ini

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,5 +7,6 @@ deps =
77
pytest
88
pytest-codeblocks
99
pytest-cov
10+
pytest-randomly
1011
commands =
1112
pytest {posargs} --codeblocks

0 commit comments

Comments
 (0)