-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
69 lines (66 loc) · 2.11 KB
/
setup.py
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
from pathlib import Path
from setuptools import find_packages
from setuptools import setup
version = "6.2.2.dev0"
setup(
name="i18ndude",
version=version,
description="i18ndude performs various tasks related to ZPT's, Python "
"Scripts and i18n.",
long_description=(
Path("README.rst").read_text()
+ "\n\n"
+ (Path("docs") / "command.rst").read_text()
+ "\n\n"
+ Path("CHANGES.rst").read_text()
),
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Console",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3.9",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: Implementation",
"Programming Language :: Python :: Implementation :: CPython",
"Programming Language :: Python :: Implementation :: PyPy",
"Topic :: Utilities",
],
keywords="Plone i18n zpt",
author="Daniel Nouri",
author_email="[email protected]",
maintainer="Maurits van Rees",
maintainer_email="[email protected]",
url="https://github.com/collective/i18ndude",
license="GPL",
package_dir={"": "src"},
packages=find_packages(
"src",
),
include_package_data=True,
zip_safe=False,
python_requires=">=3.8",
install_requires=[
"lxml",
"zope.i18nmessageid >= 3.3",
"zope.interface >= 3.3",
"zope.tal >= 4.3.0",
],
extras_require={
"plone": ["plone.i18n"],
},
entry_points={
"console_scripts": [
"i18ndude=i18ndude.script:main",
],
# Documentation generation
"zest.releaser.prereleaser.before": [
"i18ndude_cli = i18ndude.utils:prepare_cli_documentation",
],
},
)