Skip to content

Commit 0e12b78

Browse files
committed
Fix package build
1 parent ca9f621 commit 0e12b78

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

pyproject.toml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ name = "storymap"
77
version = "0.1.0"
88
description = "Generate user story maps from markdown"
99
readme = "README.md"
10-
license = { text = "MIT" }
10+
license = "MIT"
1111
requires-python = ">=3.11"
1212
authors = [
1313
{ name = "MozaicWorks", email = "alex.bolboaca@mozaicworks.com" }
@@ -17,7 +17,6 @@ classifiers = [
1717
"Development Status :: 3 - Alpha",
1818
"Environment :: Console",
1919
"Intended Audience :: Developers",
20-
"License :: OSI Approved :: MIT License",
2120
"Programming Language :: Python :: 3",
2221
"Programming Language :: Python :: 3.11",
2322
"Programming Language :: Python :: 3.12",
@@ -27,6 +26,7 @@ classifiers = [
2726
dependencies = [
2827
"markdown-it-py>=3.0",
2928
"jinja2>=3.0",
29+
"markupsafe>=2.0",
3030
"click>=8.0",
3131
]
3232

@@ -38,5 +38,8 @@ Issues = "https://github.com/mozaicworks/storymap/issues"
3838
[project.scripts]
3939
storymap = "storymap.cli:main"
4040

41+
[tool.setuptools.packages.find]
42+
exclude = ["out*", "tests*"]
43+
4144
[tool.pytest.ini_options]
4245
testpaths = ["tests"]

0 commit comments

Comments
 (0)