-
-
Notifications
You must be signed in to change notification settings - Fork 7
/
setup.py
executable file
·59 lines (54 loc) · 2.02 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
#!/usr/bin/env python
#
# Copyright © Michal Čihař <[email protected]>
#
# This file is part of Weblate <https://weblate.org/>
#
from setuptools import setup
with open("README.rst") as handle:
LONG_DESCRIPTION = handle.read()
with open("requirements.txt") as handle:
REQUIRES = handle.read().split()
with open("requirements-test.txt") as handle:
REQUIRES_TEST = handle.read().split()
setup(
name="weblate_fedora_messaging",
version="0.9",
author="Michal Čihař",
author_email="[email protected]",
description="Weblate Fedora Messaging integration",
long_description=LONG_DESCRIPTION,
long_description_content_type="text/x-rst",
license="GPLv3+",
keywords="i18n l10n gettext git mercurial translate",
url="https://weblate.org/",
download_url="https://github.com/WeblateOrg/fedora_mesaging",
project_urls={
"Issue Tracker": "https://github.com/WeblateOrg/fedora_messaging/issues",
"Documentation": "https://docs.weblate.org/",
"Source Code": "https://github.com/WeblateOrg/fedora_messaging",
"Twitter": "https://twitter.com/WeblateOrg",
},
platforms=["any"],
packages=["weblate_fedora_messaging"],
include_package_data=True,
install_requires=REQUIRES,
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",
],
python_requires=">=3.11",
setup_requires=["pytest-runner"],
tests_require=REQUIRES_TEST,
)