Put dependencies directly in project config
This commit is contained in:
+6
-3
@@ -9,7 +9,6 @@ authors = [
|
|||||||
]
|
]
|
||||||
description = "A markdown-like text editor for planning and writing novels"
|
description = "A markdown-like text editor for planning and writing novels"
|
||||||
readme = {file = "setup/description_pypi.md", content-type = "text/markdown"}
|
readme = {file = "setup/description_pypi.md", content-type = "text/markdown"}
|
||||||
requires-python = ">=3.8"
|
|
||||||
license = {text = "GNU General Public License v3"}
|
license = {text = "GNU General Public License v3"}
|
||||||
classifiers = [
|
classifiers = [
|
||||||
"Programming Language :: Python :: 3 :: Only",
|
"Programming Language :: Python :: 3 :: Only",
|
||||||
@@ -26,11 +25,15 @@ classifiers = [
|
|||||||
"Natural Language :: English",
|
"Natural Language :: English",
|
||||||
"Topic :: Text Editors",
|
"Topic :: Text Editors",
|
||||||
]
|
]
|
||||||
dynamic = ["version", "dependencies"]
|
requires-python = ">=3.8"
|
||||||
|
dependencies = [
|
||||||
|
"pyqt5>=5.10",
|
||||||
|
"pyenchant>=3.0.0",
|
||||||
|
]
|
||||||
|
dynamic = ["version"]
|
||||||
|
|
||||||
[tool.setuptools.dynamic]
|
[tool.setuptools.dynamic]
|
||||||
version = {attr = "novelwriter.__version__"}
|
version = {attr = "novelwriter.__version__"}
|
||||||
dependencies = {file = ["requirements.txt"]}
|
|
||||||
|
|
||||||
[project.urls]
|
[project.urls]
|
||||||
Homepage = "https://novelwriter.io"
|
Homepage = "https://novelwriter.io"
|
||||||
|
|||||||
Reference in New Issue
Block a user