Skip to content

Commit

Permalink
fix: html files not included on install
Browse files Browse the repository at this point in the history
  • Loading branch information
polarmutex committed Oct 24, 2022
1 parent a44030b commit 101bd83
Showing 1 changed file with 12 additions and 17 deletions.
29 changes: 12 additions & 17 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,21 +1,10 @@
#[build-system]
#requires = [
# # Primary build utility
# # Version 42 or higher is required in order to use setup.cfg
# "setuptools >= 42",
#
# # Plugin for Setuptools to infer version number from source control
# # management (e.g. Git)
# # Version 3.4 or higher is required in order to use setup.cfg
# #"setuptools_scm[toml] >= 3.4",
#
# # Used to build a binary distribution
# #"wheel",
#]
#build-backend = "setuptools.build_meta"
[build-system]
requires = ["setuptools", "wheel"]
build-backend = "setuptools.build_meta"

[project]
name = "fava-envelope"
version = "0.5.4"
version = "0.5.5"
description = ""
readme = "README.md"
requires-python = ">=3.7"
Expand All @@ -28,7 +17,10 @@ authors = [
classifiers = [
"Development Status :: 4 - Beta",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3 :: Only"
"Programming Language :: Python :: 3 :: Only",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
]

dependencies = [
Expand All @@ -54,6 +46,9 @@ documentation = "https://github.com/polarmutex/fava-envelope"
repository = "https://github.com/polarmutex/fava-envelope"
changelog = "https://github.com/polarmutex/fava-envelope/master/CHANGELOG.md"

[tool.setuptools.packages]
find = {} # Scan the project directory with the default parameters

# Enable setuptools_scm to infer the version number from source control
#[tool.setuptools_scm]

Expand Down

0 comments on commit 101bd83

Please sign in to comment.