Releasing 0.1.3.

This commit is contained in:
Julien Palard 2022-08-30 17:21:50 +02:00
parent 5c7f2b7154
commit e08a750ef7
Signed by: mdk
GPG Key ID: 0EFC1AC1006886F8
4 changed files with 40 additions and 33 deletions

View File

@ -1,7 +1,7 @@
"""Find translations examples by grepping in .po files.
"""
__version__ = "0.1.2"
__version__ = "0.1.3"
import argparse
import glob

View File

@ -1,3 +1,41 @@
[build-system]
requires = ["setuptools", "wheel"]
requires = ["setuptools>=61.2"]
build-backend = "setuptools.build_meta"
[project]
name = "pogrep"
description = "Find translations examples by grepping in .po files."
authors = [{name = "Julien Palard", email = "julien@palard.fr"}]
license = {text = "MIT License"}
classifiers = [
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Natural Language :: English",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
]
urls = {Homepage = "https://github.com/JulienPalard/pogrep"}
requires-python = ">= 3.6"
dependencies = [
"regex",
"polib",
"tabulate",
]
dynamic = ["version"]
[project.readme]
file = "README.md"
content-type = "text/markdown; charset=UTF-8"
[project.scripts]
pogrep = "pogrep:main"
[tool.setuptools]
py-modules = ["pogrep"]
include-package-data = false
[tool.setuptools.dynamic.version]
attr = "pogrep.__version__"

View File

@ -1,30 +0,0 @@
[metadata]
name = pogrep
version = 0.1.2
description = Find translations examples by grepping in .po files.
long_description = file: README.md
long_description_content_type = text/markdown; charset=UTF-8
author = Julien Palard
author_email = julien@palard.fr
url = https://github.com/JulienPalard/pogrep
license = MIT License
classifiers =
Development Status :: 5 - Production/Stable
Intended Audience :: Developers
License :: OSI Approved :: MIT License
Natural Language :: English
Programming Language :: Python :: 3
Programming Language :: Python :: 3.6
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
[options]
py_modules = pogrep
python_requires = >= 3.6
install_requires =
regex
polib
tabulate
[options.entry_points]
console_scripts = pogrep=pogrep:main

View File

@ -1 +0,0 @@
__import__("setuptools").setup()