setup-cfg-fmt
This commit is contained in:
parent
40f105ad9b
commit
ccd3c57977
1 changed files with 19 additions and 18 deletions
33
setup.cfg
33
setup.cfg
|
@ -1,38 +1,35 @@
|
||||||
[metadata]
|
[metadata]
|
||||||
name = dosage
|
name = dosage
|
||||||
maintainer = Tobias Gruetzmacher
|
|
||||||
maintainer_email = tobias-dosage@23.gs
|
|
||||||
description = a comic strip downloader and archiver
|
description = a comic strip downloader and archiver
|
||||||
long_description = file: README.md
|
long_description = file: README.md
|
||||||
long_description_content_type = text/markdown
|
long_description_content_type = text/markdown
|
||||||
url = https://dosage.rocks
|
url = https://dosage.rocks
|
||||||
project_urls =
|
|
||||||
Code = https://github.com/webcomics/dosage
|
|
||||||
Issue tracker = https://github.com/webcomics/dosage/issues
|
|
||||||
license = MIT License
|
license = MIT License
|
||||||
license_file = COPYING
|
license_file = COPYING
|
||||||
platforms = Any
|
platforms = Any
|
||||||
keywords = comic,webcomic,downloader,archiver,crawler
|
|
||||||
classifiers =
|
classifiers =
|
||||||
|
Development Status :: 5 - Production/Stable
|
||||||
Environment :: Console
|
Environment :: Console
|
||||||
Intended Audience :: End Users/Desktop
|
Intended Audience :: End Users/Desktop
|
||||||
Topic :: Multimedia :: Graphics
|
|
||||||
Topic :: Internet :: WWW/HTTP
|
|
||||||
Development Status :: 4 - Beta
|
|
||||||
License :: OSI Approved :: MIT License
|
License :: OSI Approved :: MIT License
|
||||||
|
Operating System :: OS Independent
|
||||||
Programming Language :: Python
|
Programming Language :: Python
|
||||||
Programming Language :: Python :: 3
|
Programming Language :: Python :: 3
|
||||||
|
Programming Language :: Python :: 3 :: Only
|
||||||
Programming Language :: Python :: 3.5
|
Programming Language :: Python :: 3.5
|
||||||
Programming Language :: Python :: 3.6
|
Programming Language :: Python :: 3.6
|
||||||
Programming Language :: Python :: 3.7
|
Programming Language :: Python :: 3.7
|
||||||
Programming Language :: Python :: 3.8
|
Programming Language :: Python :: 3.8
|
||||||
Operating System :: OS Independent
|
Topic :: Internet :: WWW/HTTP
|
||||||
|
Topic :: Multimedia :: Graphics
|
||||||
|
keywords = comic,webcomic,downloader,archiver,crawler
|
||||||
|
maintainer = Tobias Gruetzmacher
|
||||||
|
maintainer_email = tobias-dosage@23.gs
|
||||||
|
project_urls =
|
||||||
|
Code = https://github.com/webcomics/dosage
|
||||||
|
Issue tracker = https://github.com/webcomics/dosage/issues
|
||||||
|
|
||||||
[options]
|
[options]
|
||||||
setup_requires =
|
|
||||||
setuptools >= 38.3.0
|
|
||||||
setuptools_scm
|
|
||||||
python_requires = >=3.5
|
|
||||||
packages = find:
|
packages = find:
|
||||||
install_requires =
|
install_requires =
|
||||||
colorama
|
colorama
|
||||||
|
@ -41,16 +38,20 @@ install_requires =
|
||||||
requests>=2.0
|
requests>=2.0
|
||||||
cached_property;python_version<'3.8'
|
cached_property;python_version<'3.8'
|
||||||
importlib_metadata;python_version<'3.8'
|
importlib_metadata;python_version<'3.8'
|
||||||
|
python_requires = >=3.5
|
||||||
|
setup_requires =
|
||||||
|
setuptools>=38.3.0
|
||||||
|
setuptools_scm
|
||||||
|
|
||||||
[options.entry_points]
|
[options.entry_points]
|
||||||
console_scripts =
|
console_scripts =
|
||||||
dosage = dosagelib.cmd:main
|
dosage = dosagelib.cmd:main
|
||||||
|
|
||||||
[options.extras_require]
|
[options.extras_require]
|
||||||
css =
|
|
||||||
cssselect
|
|
||||||
bash =
|
bash =
|
||||||
argcomplete
|
argcomplete
|
||||||
|
css =
|
||||||
|
cssselect
|
||||||
test =
|
test =
|
||||||
pytest-cov
|
pytest-cov
|
||||||
pytest-xdist
|
pytest-xdist
|
||||||
|
|
Loading…
Reference in a new issue