Skip to content

Commit

Permalink
#222: try fixing long_description error
Browse files Browse the repository at this point in the history
  • Loading branch information
cwschilly committed Sep 16, 2024
1 parent e0f57ee commit 84ba695
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# rom-tools-and-workflows
The ROM tools and workflows Python library comprises a set of algorithms for constructing and exploiting ROMs that rely on *abstract base classes* that encapsulate all the information needed to run a given algorithm. The philosophy is that, for any given application, the user simply needs to "fill out" a class that meets the required API of the abstract base class. Once this class is complete, the user gains access to all of our existing algorithms.

## Documentation
## Documentation

https://pressio.github.io/rom-tools-and-workflows/romtools.html

Expand Down
4 changes: 3 additions & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,8 @@ build-backend = "setuptools.build_meta"

[project]
name = "romtools"
dynamic = ["version"]
dynamic = ["version", "long_description"]
long_description_content_type = "text/markdown"
requires-python = ">=3.8"
dependencies = [
'docutils',
Expand All @@ -21,6 +22,7 @@ dependencies = [

[tool.setuptools.dynamic]
version = {file = "version.txt"}
long_description = {file = "README.md"}

[tool.setuptools.packages.find]
where = ["."]
Expand Down

0 comments on commit 84ba695

Please sign in to comment.