-
-
Notifications
You must be signed in to change notification settings - Fork 8
/
setup.py
executable file
·40 lines (36 loc) · 1.33 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
#!/usr/bin/env python
# Copyright © Michal Čihař <[email protected]>
#
# SPDX-License-Identifier: GPL-3.0-or-later
"""Setup script for customization demo."""
from setuptools import setup
setup(
name="weblate_customization",
version="0.1",
packages=["weblate_customization"],
include_package_data=True,
license="GPL-3.0-or-later",
description="Weblate customization example",
long_description="Weblate customization example",
keywords="i18n l10n gettext git mercurial translate",
url="https://weblate.org/",
author="Michal Čihař",
author_email="[email protected]",
install_requires=["Weblate"],
zip_safe=False,
classifiers=[
"Environment :: Web Environment",
"Framework :: Django",
"Intended Audience :: Developers",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python",
"Programming Language :: Python :: 3",
"Topic :: Software Development :: Internationalization",
"Topic :: Software Development :: Localization",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Internet :: WWW/HTTP :: Dynamic Content",
],
)