-
Notifications
You must be signed in to change notification settings - Fork 4
/
setup.py
26 lines (25 loc) · 970 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
from setuptools import setup
setup(
name="radicale-remind",
version="0.6.0",
description="Radicale Remind, Abook and Taskwarrior storage backend",
long_description=open("README.rst").read(),
author="Jochen Sprickerhof",
author_email="radicale@jochen.sprickerhof.de",
license="GPLv3+",
url="https://github.com/jspricke/radicale-remind",
keywords=["Radicale"],
classifiers=[
"Programming Language :: Python",
"Development Status :: 4 - Beta",
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)",
"Operating System :: OS Independent",
"Topic :: Office/Business :: Groupware",
],
install_requires=["Radicale", "abook", "icstask", "remind"],
py_modules=["radicale_remind"],
)