aboutsummaryrefslogtreecommitdiff
path: root/setup.cfg
diff options
context:
space:
mode:
authorWojtek Kosior <koszko@koszko.org>2022-10-29 13:54:06 +0200
committerWojtek Kosior <koszko@koszko.org>2022-10-29 13:54:06 +0200
commitd7db0d187ccb4404fdf6f19fba15e0a39391640a (patch)
tree4c41764c51818587d797efe17abab2e94306ec48 /setup.cfg
downloadhydrilla-website-d7db0d187ccb4404fdf6f19fba15e0a39391640a.tar.gz
hydrilla-website-d7db0d187ccb4404fdf6f19fba15e0a39391640a.zip
initial commit
Diffstat (limited to 'setup.cfg')
-rw-r--r--setup.cfg70
1 files changed, 70 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg
new file mode 100644
index 0000000..fb589ca
--- /dev/null
+++ b/setup.cfg
@@ -0,0 +1,70 @@
+# SPDX-License-Identifier: CC0-1.0
+
+# Copyright (C) 2022 Wojtek Kosior <koszko@koszko.org>
+#
+# Available under the terms of Creative Commons Zero v1.0 Universal.
+
+[metadata]
+name = hydrilla_website
+author = Wojtek Kosior
+author_email = koszko@koszko.org
+description = Hydrilla&Haketilo website
+long_description = file: README.md
+long_description_content_type = text/markdown
+url = https://git.koszko.org/hydrilla-website
+keywords = hydrilla, haketilo
+license = AGPL-3.0-or-later
+classifiers =
+ Development Status :: 5 - Production/Stable
+ Intended Audience :: Developers
+ Environment :: Web Environment
+ Topic :: Internet :: WWW/HTTP :: WSGI
+ License :: OSI Approved :: GNU Affero General Public License v3 or later (AGPLv3+)
+ Natural Language :: English
+ Operating System :: OS Independent
+ Programming Language :: Python :: 3 :: Only
+ Private :: Do Not Upload
+
+[options]
+zip_safe = False
+package_dir =
+ = src
+packages = find_namespace:
+include_package_data=True
+python_requires = >= 3.7
+install_requires =
+ flask>=1.1
+
+[options.package_data]
+hydrilla_website =
+ locales/*/LC_MESSAGES/messages.mo
+ py.typed
+
+[options.packages.find]
+where = src
+
+[extract_messages]
+mapping_file = babel.cfg
+keywords = _ f_
+add_comments = TRANSLATORS:
+width = 80
+input_dirs = src/hydrilla_website
+output_file = src/hydrilla_website/locales/messages.pot
+msgid_bugs_address = koszko@koszko.org
+sort_by_file = True
+copyright_holder = Wojtek Kosior <koszko@koszko.org>
+
+[init_catalog]
+input_file = src/hydrilla_website/locales/messages.pot
+output_dir = src/hydrilla_website/locales/
+domain = messages
+
+[update_catalog]
+input_file = src/hydrilla_website/locales/messages.pot
+output_dir = src/hydrilla_website/locales/
+domain = messages
+
+[compile_catalog]
+directory = src/hydrilla_website/locales
+use_fuzzy = True
+domain = messages