Skip to content

Commit 37885e8

Browse files
edgarrmondragonsethmlarson
authored andcommitted
Add info about new classifiers table to readme
1 parent 9dcce18 commit 37885e8

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

README.md

+9
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ ackg|0.0.5||0|0|2021-01-21 04:37:10
2626
- Direct requirements (`requires_dist`)
2727
- Extra requirements (`requires_extras`)
2828
- Python requirements (`requires_python`)
29+
- Trove classifiers (`classifiers`)
2930
- Yanked versions (`yanked`)
3031
- Wheel data (`build_tag`, `python_tags`, `abi_tags`, `platform_tags`)
3132
- Maintainers on PyPI
@@ -94,6 +95,14 @@ CREATE TABLE scorecard_checks (
9495
name STRING,
9596
score INTEGER
9697
)
98+
99+
-- Trove Classifiers --
100+
CREATE TABLE classifiers (
101+
package_name TEXT,
102+
name TEXT,
103+
PRIMARY KEY (package_name, name),
104+
FOREIGN KEY (package_name) REFERENCES packages(name)
105+
)
97106
```
98107

99108
### Download data

0 commit comments

Comments
 (0)