2019-01-27 01:10:11 +01:00
|
|
|
[metadata]
|
|
|
|
|
name = sigal
|
|
|
|
|
description = Simple static gallery generator
|
|
|
|
|
long_description = file: README.rst
|
2021-04-19 00:30:08 +02:00
|
|
|
long_description_content_type = text/x-rst
|
2019-01-27 01:10:11 +01:00
|
|
|
author = Simon Conseil
|
|
|
|
|
author_email = contact@saimon.org
|
|
|
|
|
url = https://github.com/saimn/sigal
|
|
|
|
|
keywords = gallery, static, generator, image, video, galleria
|
|
|
|
|
license = MIT License
|
2019-01-27 01:21:04 +01:00
|
|
|
license_file = LICENSE
|
2019-01-27 01:10:11 +01:00
|
|
|
classifiers =
|
|
|
|
|
Development Status :: 5 - Production/Stable
|
|
|
|
|
Environment :: Console
|
|
|
|
|
License :: OSI Approved :: MIT License
|
|
|
|
|
Operating System :: OS Independent
|
|
|
|
|
Programming Language :: Python :: 3
|
2020-01-04 00:57:08 -03:00
|
|
|
Programming Language :: Python :: 3.8
|
2021-04-19 00:26:28 +02:00
|
|
|
Programming Language :: Python :: 3.9
|
2021-10-14 19:08:12 +02:00
|
|
|
Programming Language :: Python :: 3.10
|
2019-01-27 01:10:11 +01:00
|
|
|
Topic :: Internet :: WWW/HTTP
|
|
|
|
|
Topic :: Multimedia :: Graphics :: Viewers
|
|
|
|
|
Topic :: Software Development :: Libraries :: Python Modules
|
|
|
|
|
|
|
|
|
|
[options]
|
|
|
|
|
zip_safe = False
|
|
|
|
|
include_package_data = True
|
|
|
|
|
packages = find:
|
2021-10-15 09:30:21 +02:00
|
|
|
python_requires = >=3.8
|
2019-01-27 01:10:11 +01:00
|
|
|
install_requires =
|
|
|
|
|
blinker
|
|
|
|
|
click
|
2022-01-14 13:52:45 +01:00
|
|
|
Jinja2>=2.7
|
2019-01-27 01:10:11 +01:00
|
|
|
Markdown
|
|
|
|
|
Pillow>=4.0.0
|
|
|
|
|
pilkit
|
2020-04-11 19:28:15 +08:00
|
|
|
natsort
|
2019-01-27 01:10:11 +01:00
|
|
|
|
|
|
|
|
[options.extras_require]
|
2020-04-11 00:39:28 +08:00
|
|
|
all = boto; brotli; feedgenerator; zopfli; cryptography
|
2020-03-15 22:09:02 -03:00
|
|
|
tests = pytest; pytest-cov
|
2021-07-06 21:41:48 +02:00
|
|
|
docs = Sphinx; alabaster; cryptography
|
2019-01-27 01:10:11 +01:00
|
|
|
|
|
|
|
|
[options.packages.find]
|
|
|
|
|
exclude =
|
|
|
|
|
tests
|
|
|
|
|
|
|
|
|
|
[options.entry_points]
|
|
|
|
|
console_scripts =
|
|
|
|
|
sigal = sigal:main
|
2015-04-22 23:25:48 +02:00
|
|
|
|
|
|
|
|
[check-manifest]
|
|
|
|
|
ignore =
|
|
|
|
|
.coveragerc
|
|
|
|
|
tests
|
2018-09-17 00:17:31 +02:00
|
|
|
readthedocs.yml
|
2018-10-04 22:34:07 +02:00
|
|
|
|
|
|
|
|
[flake8]
|
2021-07-06 22:44:19 +02:00
|
|
|
# ignore = E731,W504,E501
|
2021-07-07 00:12:08 +02:00
|
|
|
max-line-length = 88
|
|
|
|
|
ignore = E203,W503,E731
|
2020-05-08 23:21:08 -04:00
|
|
|
|
|
|
|
|
[isort]
|
2021-07-07 00:12:08 +02:00
|
|
|
profile = black
|
2021-07-06 22:44:19 +02:00
|
|
|
known_third_party=blinker,click,jinja2,markdown,natsort,PIL,Pillow,pilkit
|
2022-01-14 18:33:22 +01:00
|
|
|
|
|
|
|
|
[coverage:report]
|
|
|
|
|
exclude_lines =
|
|
|
|
|
pragma: no cover
|
|
|
|
|
def __repr__
|
|
|
|
|
raise AssertionError
|
|
|
|
|
raise NotImplementedError
|
|
|
|
|
if __name__ == .__main__.:
|
|
|
|
|
except KeyboardInterrupt
|
|
|
|
|
except ImportError
|