-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathsetup.py
30 lines (28 loc) · 974 Bytes
/
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
# SPDX-FileCopyrightText: 2016-2023 Siveo <[email protected]>
# SPDX-License-Identifier: GPL-3.0-or-later
from setuptools import setup
setup(
classifiers=[
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"Topic :: Software Development :: Build Tools",
"License :: OSI Approved :: GPL License",
"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",
],
keywords="pulse-xmpp-agent",
name="pulse_xmpp_agent",
version='3.2.0', # fmt: skip
debian_distro='stretch', # fmt: skip
description="pulse-xmpp-agent",
url="https://www.siveo.net/",
packages=["pulse_xmpp_agent"],
test_suite="",
package_data={},
entry_points={},
extras_require={},
install_requires=[],
) # fmt: skip