-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
28 lines (25 loc) · 884 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
#!/usr/bin/env python3
import setuptools
with open("README.md", "r") as fh:
desc = fh.read()
setuptools.setup(
name="radicale_auth_matrix",
version="0.1.1",
description="matrix.org authentication plugin for Radicale",
long_description=desc,
author="etke.cc",
url="https://github.com/etkecc/radicale-auth-matrix",
packages=setuptools.find_packages(),
include_package_data=True,
license="GPL3+",
classifiers=[
"Development Status :: 4 - Beta",
"Environment :: Plugins ",
"Intended Audience :: System Administrators",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: POSIX :: Linux",
"Programming Language :: Python :: 3",
"Topic :: Security",
"Topic :: System :: Systems Administration :: Authentication/Directory",
],
)