Move classifiers from setup.py

This commit is contained in:
Misty De Méo 2025-06-12 12:58:05 -07:00 committed by Misty De Méo
parent 33f60ce609
commit 8b20ea91bb
2 changed files with 5 additions and 7 deletions

View file

@ -14,8 +14,13 @@ description = "Distributed web crawling with browsers"
readme = "README.rst"
requires-python = ">=3.9"
classifiers = [
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.9",
"Operating System :: OS Independent",
"Environment :: Console",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Archiving",
]
dependencies = [
"PyYAML>=5.1",

View file

@ -46,11 +46,4 @@ setuptools.setup(
"brozzler.dashboard": find_package_data("brozzler.dashboard"),
},
zip_safe=False,
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"Programming Language :: Python :: 3.9",
"Topic :: Internet :: WWW/HTTP",
"Topic :: System :: Archiving",
],
)