Skip to content

Commit f786cfb

Browse files
author
Rudy Puig
committed
chore: fix workflow installation (come on)
1 parent cfa497a commit f786cfb

File tree

1 file changed

+5
-3
lines changed

1 file changed

+5
-3
lines changed

pyproject.toml

Lines changed: 5 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,16 +27,18 @@ test = [
2727
]
2828

2929
[tool.setuptools]
30+
package-dir = {'' = 'src'}
3031
include-package-data = true
3132

32-
[tool.setuptools.dynamic]
33-
version = {attr = 'aoc.__version__'}
34-
3533
[tool.setuptools.packages.find]
3634
where = ['src']
35+
include = ['aoc*']
3736
exclude = ['docs', 'tests']
3837
namespaces = false
3938

39+
[tool.setuptools.dynamic]
40+
version = {attr = 'aoc.__version__'}
41+
4042
[tool.mypy]
4143
check_untyped_defs = true
4244
disallow_any_generics = true

0 commit comments

Comments
 (0)