Skip to content

Commit

Permalink
Add info about new classifiers table to readme
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarrmondragon authored and sethmlarson committed Jul 10, 2024
1 parent 9dcce18 commit 37885e8
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ ackg|0.0.5||0|0|2021-01-21 04:37:10
- Direct requirements (`requires_dist`)
- Extra requirements (`requires_extras`)
- Python requirements (`requires_python`)
- Trove classifiers (`classifiers`)
- Yanked versions (`yanked`)
- Wheel data (`build_tag`, `python_tags`, `abi_tags`, `platform_tags`)
- Maintainers on PyPI
Expand Down Expand Up @@ -94,6 +95,14 @@ CREATE TABLE scorecard_checks (
name STRING,
score INTEGER
)

-- Trove Classifiers --
CREATE TABLE classifiers (
package_name TEXT,
name TEXT,
PRIMARY KEY (package_name, name),
FOREIGN KEY (package_name) REFERENCES packages(name)
)
```

### Download data
Expand Down

0 comments on commit 37885e8

Please sign in to comment.