Files
sigal/setup.cfg

60 lines
1.3 KiB
INI
Raw Normal View History

2019-01-27 01:10:11 +01:00
[metadata]
name = sigal
description = Simple static gallery generator
long_description = file: README.rst
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
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
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:
python_requires = >=3.6
2019-01-27 01:21:04 +01:00
setup_requires =
setuptools_scm
2019-01-27 01:10:11 +01:00
install_requires =
blinker
click
Jinja2
Markdown
Pillow>=4.0.0
pilkit
[options.extras_require]
all = boto; brotli; feedgenerator; zopfli
tests = pytest; pytest-cov
docs = Sphinx; alabaster
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]
2018-12-17 00:28:08 +01:00
ignore = E731, W504