Skip to content

Commit 3825d94

Browse files
author
Daniele Briggi
committed
fix(python): classifiers
1 parent 961f963 commit 3825d94

File tree

11 files changed

+7
-6
lines changed

11 files changed

+7
-6
lines changed

packages/python/pyproject.toml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,12 @@ authors = [
1111
]
1212
readme = "README.md"
1313
requires-python = ">=3"
14-
classifiers = []
14+
classifiers = [
15+
"Programming Language :: Python :: 3",
16+
"Operating System :: POSIX :: Linux",
17+
"Operating System :: Microsoft :: Windows",
18+
"Operating System :: MacOS :: MacOS X"
19+
]
1520

1621
[project.urls]
1722
Homepage = "https://sqlite.ai"

packages/python/setup.py

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -64,9 +64,5 @@
6464
package_dir={"": "src"},
6565
include_package_data=True,
6666
python_requires=project.get("requires-python", ">=3"),
67-
classifiers=[
68-
"Programming Language :: Python :: 3",
69-
"License :: OSI Approved :: MIT License",
70-
classifier
71-
],
67+
classifiers=project.get("classifiers", []),
7268
)

python-package/LICENSE

Whitespace-only changes.

python-package/MANIFEST.in

Whitespace-only changes.

python-package/README.md

Whitespace-only changes.

python-package/configure_and_build.py

Whitespace-only changes.

python-package/download_artifacts.py

Whitespace-only changes.

python-package/pyproject.toml

Whitespace-only changes.

python-package/setup.cfg

Whitespace-only changes.

python-package/src/sqliteai/__init__.py

Whitespace-only changes.

0 commit comments

Comments
 (0)