-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* add classifiers * update license docs to match new path
- Loading branch information
1 parent
8ee54d0
commit cfe249a
Showing
3 changed files
with
16 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,4 @@ | ||
WordPress Site Extractor | ||
Copyright 2022-2024 The University of Sheffield | ||
|
||
Portions of this code are derived from WPJsonScraper, which is available under the MIT license. For details, see src/extractor/dl/LICENSE. | ||
Portions of this code are derived from WPJsonScraper, which is available under the MIT license. For details, see src/wpextract/download/LICENSE. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
[tool.poetry] | ||
name="wpextract" | ||
version="1.0.0rc1" | ||
description="Create a dataset from the WordPress API" | ||
authors=["Freddy Heppell <[email protected]>"] | ||
packages=[ | ||
{ include = "wpextract", from = "src"} | ||
] | ||
description="Create datasets from WordPress sites" | ||
homepage="https://gatenlp.github.io/wordpress-site-extractor/" | ||
documentation="https://gatenlp.github.io/wordpress-site-extractor/" | ||
repository="https://github.com/GateNLP/wordpress-site-extractor" | ||
license="Apache-2.0" | ||
readme = "README.md" | ||
authors=["Freddy Heppell <[email protected]>"] | ||
classifiers = [ | ||
"Development Status :: 5 - Production/Stablec", | ||
"Environment :: Console", | ||
"Intended Audience :: Science/Research", | ||
"Intended Audience :: Developers", | ||
"Operating System :: OS Independent", | ||
"Topic :: Software Development :: Libraries :: Python Modules" | ||
] | ||
packages=[ | ||
{ include = "wpextract", from = "src"} | ||
] | ||
|
||
[tool.poetry.scripts] | ||
wpextract = "wpextract.cli:cli" | ||
|