Skip to content

Commit 46895df

Browse files
committed
fix: Finalize and correct pyproject.toml syntax for v1.0.2
1 parent e060b97 commit 46895df

File tree

1 file changed

+20
-14
lines changed

1 file changed

+20
-14
lines changed

pyproject.toml

Lines changed: 20 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "synapsia"
7-
version = "1.0.1"
7+
version = "1.0.2"
88
authors = [
99
{ name="Luis Pereida", email="[email protected]" },
1010
]
@@ -13,29 +13,35 @@ readme = "README.md"
1313
requires-python = ">=3.9"
1414
license = { file="LICENSE" }
1515

16+
keywords = [
17+
"cli", "rag", "llm", "ollama", "llama-index", "embeddings",
18+
"vector", "knowledge-base", "python", "ai"
19+
]
20+
1621
dependencies = [
1722
"llama-index",
1823
"llama-index-embeddings-ollama",
1924
"llama-index-llms-ollama",
2025
]
2126

22-
[project.classifiers]
23-
Development Status :: 4 - Beta
24-
Intended Audience :: Developers
25-
Intended Audience :: System Administrators
26-
Topic :: Scientific/Engineering :: Artificial Intelligence
27-
Topic :: Utilities
28-
License :: OSI Approved :: MIT License
29-
Programming Language :: Python :: 3
30-
Programming Language :: Python :: 3.9
31-
Programming Language :: Python :: 3.10
32-
Programming Language :: Python :: 3.11
33-
Operating System :: OS Independent
27+
classifiers = [
28+
"Development Status :: 4 - Beta",
29+
"Intended Audience :: Developers",
30+
"Intended Audience :: System Administrators",
31+
"Topic :: Scientific/Engineering :: Artificial Intelligence",
32+
"Topic :: Utilities",
33+
"License :: OSI Approved :: MIT License",
34+
"Programming Language :: Python :: 3",
35+
"Programming Language :: Python :: 3.9",
36+
"Programming Language :: Python :: 3.10",
37+
"Programming Language :: Python :: 3.11",
38+
"Operating System :: OS Independent",
39+
]
3440

3541
[project.urls]
3642
Homepage = "https://github.com/sysadminctl-services/synapsia"
3743
Repository = "https://github.com/sysadminctl-services/synapsia"
38-
Bug Tracker = "https://github.com/sysadminctl-services/synapsia/issues"
44+
"Bug Tracker" = "https://github.com/sysadminctl-services/synapsia/issues"
3945

4046
[project.scripts]
4147
synapsia = "synapsia.synapsia:main"

0 commit comments

Comments
 (0)