forked from 4teamwork/ftw.slacker
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
61 lines (56 loc) · 1.74 KB
/
setup.py
File metadata and controls
61 lines (56 loc) · 1.74 KB
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
from pathlib import Path
from setuptools import setup
version = "2.0.0a1.dev0"
long_description = (
f"{Path('README.md').read_text()}\n" f"{Path('CHANGES.md').read_text()}\n"
)
setup(
name="ftw.slacker",
version=version,
description="Uses webhooks to post messages into a slack channel.",
long_description_content_type="text/markdown",
long_description=long_description,
classifiers=[
"Development Status :: 6 - Mature",
"Environment :: Web Environment",
"Framework :: Plone :: 6.2",
"Framework :: Plone :: Addon",
"Framework :: Plone",
"Framework :: Zope :: 2",
"Framework :: Zope :: 4",
"Framework :: Zope",
"Intended Audience :: Developers",
"License :: OSI Approved :: GNU General Public License v2 (GPLv2)",
"Programming Language :: Python :: 3.10",
"Programming Language :: Python :: 3.11",
"Programming Language :: Python :: 3.12",
"Programming Language :: Python :: 3.13",
"Programming Language :: Python",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords="ftw slacker slack webhoock api",
author="4teamwork AG",
author_email="mailto:info@4teamwork.ch",
url="https://git.4teamwork.ch/ftw/ftw.slacker",
license="GPL2",
include_package_data=True,
zip_safe=False,
python_requires=">=3.10",
install_requires=[
"zope.component",
"zope.interface",
"requests",
],
extras_require={
"test": [
"plone.app.testing",
"zope.configuration",
"transaction",
]
},
entry_points="""
# -*- Entry points: -*-
[z3c.autoinclude.plugin]
target = plone
""",
)