tenseleyflow/dlm-lsp / f9decd2

Browse files

Add PyPI metadata: classifiers, keywords, project URLs

Authored by mfwolffe <wolffemf@dukes.jmu.edu>
SHA
f9decd23b4635f3d57dabbc72ca82afd009a9071
Parents
604faaf
Tree
333e488

1 changed file

StatusFile+-
M pyproject.toml 12 0
pyproject.tomlmodified
@@ -10,6 +10,14 @@ readme = "README.md"
1010
 requires-python = ">=3.11"
1111
 license = "MIT"
1212
 authors = [{ name = "mfwolffe", email = "mfwolffe@outlook.com" }]
13
+keywords = ["lsp", "language-server", "dlm", "llm", "fine-tuning"]
14
+classifiers = [
15
+    "Development Status :: 3 - Alpha",
16
+    "License :: OSI Approved :: MIT License",
17
+    "Programming Language :: Python :: 3",
18
+    "Programming Language :: Python :: 3.11",
19
+    "Topic :: Text Editors :: Integrated Development Environments (IDE)",
20
+]
1321
 dependencies = [
1422
     "document-language-model",
1523
     "pygls>=1.3",
@@ -19,6 +27,10 @@ dependencies = [
1927
 [tool.uv.sources]
2028
 document-language-model = { path = "../..", editable = true }
2129
 
30
+[project.urls]
31
+Homepage = "https://github.com/tenseleyFlow/dlm-lsp"
32
+Issues = "https://github.com/tenseleyFlow/dlm-lsp/issues"
33
+
2234
 [project.scripts]
2335
 dlm-lsp = "dlm_lsp.server:main"
2436