-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.cfg
46 lines (42 loc) · 1.06 KB
/
setup.cfg
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
[metadata]
name = honyaku
version = attr: honyaku.__version__
description = Translate po-files using Gengo.com
long_description = file: README.rst, HISTORY.rst
url = http://github.com/seantis/honyaku
author = Seantis GmbH
author_email = [email protected]
license = GPLv2
classifiers =
Intended Audience :: Developers
Programming Language :: Python
Programming Language :: Python :: 3
Programming Language :: Python :: 3.7
Programming Language :: Python :: 3.8
Programming Language :: Python :: 3.9
Programming Language :: Python :: 3.10
Programming Language :: Python :: 3.11
Topic :: Software Development :: Libraries :: Python Modules
License :: OSI Approved :: GNU General Public License v2 (GPLv2)
[options]
include_package_data = True
zip_safe = False
packages =
honyaku
python_requires = >=3.7
install_requires =
click
gengo
polib
[options.extras_require]
test =
coverage[toml]
pre-commit
pytest
pytest-cov
tox
[options.entry_points]
console_scripts =
honyaku=honyaku.cli:cli
[bdist_wheel]
universal=1