Initial commit

This commit is contained in:
Jules Lasne (jlasne - seluj78) 2019-11-25 19:08:27 +01:00
parent 984df3f780
commit db225d7d5b
3 changed files with 30 additions and 0 deletions

2
.gitignore vendored
View File

@ -102,3 +102,5 @@ venv.bak/
# mypy
.mypy_cache/
venv
.idea

25
setup.cfg Normal file
View File

@ -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

3
setup.py Normal file
View File

@ -0,0 +1,3 @@
import setuptools
setuptools.setup()