-
Notifications
You must be signed in to change notification settings - Fork 11
/
Copy pathsetup.py
28 lines (26 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
from setuptools import setup
setup(
name="radicale_storage_decsync",
version="2.1.0",
author="Aldo Gunsing",
url="https://github.com/39aldo39/Radicale-DecSync",
description="DecSync storage plugin for Radicale",
long_description=open("README.md").read(),
long_description_content_type="text/markdown",
keywords=["decsync", "radicale"],
license="GPLv3+",
packages=["radicale_storage_decsync"],
install_requires=[
"radicale>=3",
"libdecsync>=2.0.0"
],
classifiers=[
"Programming Language :: Python :: 3",
"Operating System :: POSIX :: Linux",
"Operating System :: Microsoft :: Windows",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Intended Audience :: End Users/Desktop"
]
)