scribeengine/setup.cfg

47 lines
1.3 KiB
INI

[metadata]
name = ScribeEngine
version = 0.2
author = Raoul Snyman
author_email = raoul@snyman.info
description = An extensible CMS written in Python
long_description = file:README.rst
long_description_content_type = text/x-rst
url = https://scribeengine.org
license = GPLv3+
classifiers =
'Development Status :: 3 - Alpha',
'Environment :: Web Environment,'
'Framework :: Flask',
'Intended Audience :: End Users/Desktop',
'License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)',
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Internet :: WWW/HTTP :: Dynamic Content :: Content Management System',
'Topic :: Internet :: WWW/HTTP :: WSGI :: Application'
keywords = website, cms, blog
[options]
zip_safe = false
include_package_data = true
package_dir =
= src
packages = find:
python_requires = >=3.7
install_requires = file:requirements.txt
project_urls =
Source Code = https://git.snyman.info/raoul/scribeengine
Issues = https://git.snyman.info/raoul/scribeengine/issues
[options.packages.find]
where = src
[options.entry_points]
console_scripts =
scribe-config = scribeengine.config
[bdist_wheel]
universal = 1
[flake8]
max-line-length = 120