dosage/setup.cfg

61 lines
1.5 KiB
INI
Raw Normal View History

[metadata]
name = dosage
maintainer = Tobias Gruetzmacher
2019-10-28 16:09:56 +00:00
maintainer_email = tobias-dosage@23.gs
description = a comic strip downloader and archiver
long_description = file: README.md
long_description_content_type = text/markdown
2020-04-12 11:05:00 +00:00
url = https://dosage.rocks
project_urls =
Code = https://github.com/webcomics/dosage
Issue tracker = https://github.com/webcomics/dosage/issues
2019-10-28 16:09:56 +00:00
license = MIT License
license_file = COPYING
platforms = Any
keywords = comic,webcomic,downloader,archiver,crawler
2019-10-28 16:09:56 +00:00
classifiers =
Environment :: Console
Intended Audience :: End Users/Desktop
Topic :: Multimedia :: Graphics
Topic :: Internet :: WWW/HTTP
Development Status :: 4 - Beta
License :: OSI Approved :: MIT License
Programming Language :: Python
Programming Language :: Python :: 3
2016-10-28 22:21:41 +00:00
Programming Language :: Python :: 3.5
2017-01-12 00:38:59 +00:00
Programming Language :: Python :: 3.6
2019-01-03 23:04:04 +00:00
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Operating System :: OS Independent
2019-10-28 16:09:56 +00:00
[options]
setup_requires =
2020-04-12 11:05:00 +00:00
setuptools >= 38.3.0
2019-10-28 16:09:56 +00:00
setuptools_scm
2020-02-02 22:47:19 +00:00
python_requires = >=3.5
2019-10-28 16:09:56 +00:00
packages = find:
install_requires =
colorama
imagesize
2019-10-28 16:09:56 +00:00
lxml
requests>=2.0
2019-07-14 06:06:31 +00:00
cached_property; python_version<'3.8'
importlib_metadata; python_version<'3.8'
2019-10-28 16:09:56 +00:00
[options.entry_points]
console_scripts =
dosage = dosagelib.cmd:main
2019-10-28 16:09:56 +00:00
[options.extras_require]
css =
cssselect
bash =
argcomplete
2017-10-12 21:25:37 +00:00
test =
pytest-cov
pytest-xdist
2017-10-12 21:25:37 +00:00
responses
[bdist_wheel]
2017-10-12 21:25:37 +00:00
universal = 1