From db225d7d5b377010ae7f03687c00f41da368ba13 Mon Sep 17 00:00:00 2001 From: "Jules Lasne (jlasne - seluj78)" Date: Mon, 25 Nov 2019 19:08:27 +0100 Subject: [PATCH] Initial commit --- .gitignore | 2 ++ setup.cfg | 25 +++++++++++++++++++++++++ setup.py | 3 +++ 3 files changed, 30 insertions(+) create mode 100644 setup.cfg create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index 894a44c..822c32a 100644 --- a/.gitignore +++ b/.gitignore @@ -102,3 +102,5 @@ venv.bak/ # mypy .mypy_cache/ +venv +.idea \ No newline at end of file diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..5585515 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,25 @@ +[metadata] +name = potools +version = 0.0.1 +description = Gettext related tools: spellcheck, line wrapping etc... +long_description = file: README.md, LICENSE +keywords = potools, gettext, powrap, pospell, pogrep, potodo, pomerge, padpo +license = MIT +classifiers = + License :: OSI Approved :: MIT + Programming Language :: Python :: 3 + Programming Language :: Python :: 3.5 + Programming Language :: Python :: 3.6 + Programming Language :: Python :: 3.7 + Programming Language :: Python :: 3.8 + +[options] +zip_safe = True +include_package_data = True +install_requires = + powrap + pospell + pogrep + potodo + pomerge + padpo diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..b908cbe --- /dev/null +++ b/setup.py @@ -0,0 +1,3 @@ +import setuptools + +setuptools.setup()