Put dependencies directly in project config

This commit is contained in:
Veronica Berglyd Olsen
2024-04-03 00:14:46 +02:00
parent 760b2dbf0c
commit 7fb771eba4
+6 -3
View File
@@ -9,7 +9,6 @@ authors = [
]
description = "A markdown-like text editor for planning and writing novels"
readme = {file = "setup/description_pypi.md", content-type = "text/markdown"}
requires-python = ">=3.8"
license = {text = "GNU General Public License v3"}
classifiers = [
"Programming Language :: Python :: 3 :: Only",
@@ -26,11 +25,15 @@ classifiers = [
"Natural Language :: English",
"Topic :: Text Editors",
]
dynamic = ["version", "dependencies"]
requires-python = ">=3.8"
dependencies = [
"pyqt5>=5.10",
"pyenchant>=3.0.0",
]
dynamic = ["version"]
[tool.setuptools.dynamic]
version = {attr = "novelwriter.__version__"}
dependencies = {file = ["requirements.txt"]}
[project.urls]
Homepage = "https://novelwriter.io"