Skip to content

Commit fa0994f

Browse files
committed
Add classifiers to pyproject.toml
1 parent b09064d commit fa0994f

File tree

2 files changed

+23
-1
lines changed

2 files changed

+23
-1
lines changed

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
- build
3232
runs-on: ubuntu-latest
3333
environment:
34-
name: test_pypi
34+
name: testpypi
3535
url: https://test.pypi.org/p/wikidspark
3636
permissions:
3737
id-token: write

pyproject.toml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,23 @@ description = "Wikidspark is an API for querying the Wikidata item database, all
55
authors = ["Kristian Zarębski <[email protected]>"]
66
license = "GPL-v3"
77
readme = "README.md"
8+
repository = "https://github.com/artemis-beta/wikidspark"
9+
classifiers = [
10+
"Development Status :: 5 - Production/Stable",
11+
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
12+
"Programming Language :: Python :: 3",
13+
"Programming Language :: Python :: 3.10",
14+
"Programming Language :: Python :: 3.11",
15+
"Programming Language :: Python :: 3.12",
16+
"Programming Language :: Python :: 3.13",
17+
"Topic :: Database",
18+
"Topic :: Internet",
19+
]
20+
21+
keywords = [
22+
"wikidata",
23+
"sparql",
24+
]
825

926
[tool.poetry.dependencies]
1027
python = "^3.10"
@@ -15,6 +32,11 @@ html-to-json = "^2.0.0"
1532
pandas = "^2.2.3"
1633
urllib3 = "^2.3.0"
1734

35+
[tool.pytest.ini_options]
36+
markers = [
37+
"examples: tests marked as an example",
38+
]
39+
1840

1941
[tool.poetry.group.dev.dependencies]
2042
ruff = "^0.9.2"

0 commit comments

Comments
 (0)