diff options
author | Wojtek Kosior <koszko@koszko.org> | 2022-04-27 12:08:25 +0200 |
---|---|---|
committer | Wojtek Kosior <koszko@koszko.org> | 2022-04-27 12:08:25 +0200 |
commit | ae96024993f111bcb1e48824f5f63be63ef38b1f (patch) | |
tree | caa5f87385a97b1e94aab12318caa6fc0bf6d8a6 /setup.cfg | |
parent | 376425d547b12f0e09c7c9636ad891a3ede0e272 (diff) | |
download | haketilo-hydrilla-c61c70e008832870190ea593e5f63c5994fc2245.tar.gz haketilo-hydrilla-c61c70e008832870190ea593e5f63c5994fc2245.zip |
New upstream version 1.0upstream/1.0
Diffstat (limited to 'setup.cfg')
-rw-r--r-- | setup.cfg | 81 |
1 files changed, 81 insertions, 0 deletions
diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..db1428f --- /dev/null +++ b/setup.cfg @@ -0,0 +1,81 @@ +[metadata] +name = hydrilla +author = Wojtek Kosior +author_email = koszko@koszko.org +description = Hydrilla repository server +long_description = file: README.md +long_description_content_type = text/markdown +url = https://git.koszko.org/pydrilla +project_urls = + Bug Tracker = https://hydrillabugs.koszko.org/projects/hydrilla +keywords = hydrilla, haketilo +license = AGPL-3.0-or-later +classifiers = + Development Status :: 4 - Beta + Intended Audience :: Developers + Environment :: Web Environment + Environment :: Console + 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 + +[options] +zip_safe = False +package_dir = + = src +packages = find: +include_package_data = True +python_requires = >= 3.7 +install_requires = + hydrilla.builder==1.0 + flask + jsonschema>=3.0 + +[options.package_data] +hydrilla.server = locales/*/LC_MESSAGES/hydrilla-messages.mo + +[options.extras_require] +test = pytest +setup = setuptools_scm + +[options.packages.find] +where = src +exclude = + test + +[options.entry_points] +console_scripts = + hydrilla = hydrilla.server:start + +[extract_messages] +mapping_file = babel.cfg +keywords = _ f_ +add_comments = TRANSLATORS: +width = 80 +input_dirs = src/hydrilla +output_file = src/hydrilla/server/locales/hydrilla-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/server/locales/hydrilla-messages.pot +output_dir = src/hydrilla/server/locales/ +domain = hydrilla-messages + +[update_catalog] +input_file = src/hydrilla/server/locales/hydrilla-messages.pot +output_dir = src/hydrilla/server/locales/ +domain = hydrilla-messages + +[compile_catalog] +directory = src/hydrilla/server/locales +use_fuzzy = True +domain = hydrilla-messages + +[egg_info] +tag_build = +tag_date = 0 + |