py-regex-replace/setup.cfg

37 lines
1.1 KiB
INI
Raw Normal View History

2022-06-23 14:50:49 +02:00
; setup.cfg is the configuration file for setuptools.
; https://packaging.python.org/tutorials/packaging-projects/#configuring-metadata
[metadata]
name = py-regex-replace
2022-10-17 22:02:36 +02:00
version = 0.0.2
2022-06-23 14:50:49 +02:00
author = Daniel Langbein
author_email = daniel@systemli.org
description = perform regex-replacement on stdin and output result to stdout
long_description = file: README.md
long_description_content_type = text/markdown
url = https://git.privacy1st.de/langfingaz/py-regex-replace
project_urls =
Bug Tracker = https://git.privacy1st.de/langfingaz/py-regex-replace/issues
; https://pypi.org/classifiers/
classifiers =
Development Status :: 4 - Beta
Programming Language :: Python :: 3
License :: CC0 1.0 Universal (CC0 1.0) Public Domain Dedication
Operating System :: Unix
[options]
package_dir =
= src
packages = find:
python_requires = >=3.6.9
[options.packages.find]
where = src
[options.entry_points]
; https://setuptools.readthedocs.io/en/latest/userguide/entry_point.html
console_scripts=
py-regex-replace = py_regex_replace.main:main
2022-10-17 22:02:36 +02:00
py-replace = py_replace.main:main