We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d71ae86 commit 3c12f0aCopy full SHA for 3c12f0a
3 files changed
.github/workflows/test-unit.yml
@@ -49,6 +49,10 @@ jobs:
49
run: |
50
python -m pip install -e .[dev]
51
52
+ - name: Run typechecks
53
+ run: |
54
+ mypy src tests --ignore-missing-imports
55
+
56
- name: Run tests and code coverage
57
58
coverage run --source=src -m pytest tests/test_unit_*.py
pyproject.toml
@@ -72,6 +72,12 @@ Homepage = "https://github.com/lucasimi/tda-mapper-python"
72
Documentation = "https://tda-mapper.readthedocs.io"
73
Issues = "https://github.com/lucasimi/tda-mapper-python/issues"
74
75
+[tool.setuptools.packages.find]
76
+where = ["src"]
77
78
+[tool.setuptools.package-data]
79
+"tdamapper" = ["py.typed"]
80
81
[tool.coverage.run]
82
omit = [
83
"**/_*.py",
src/tdamapper/py.typed
0 commit comments