radicale/setup.py

79 lines
3.0 KiB
Python
Raw Normal View History

2009-09-01 19:09:11 +02:00
#!/usr/bin/python
# -*- coding: utf-8 -*-
2009-09-01 19:09:11 +02:00
#
# This file is part of Radicale Server - Calendar Server
2013-04-26 01:28:03 +02:00
# Copyright © 2009-2013 Guillaume Ayoub
2009-09-01 19:09:11 +02:00
#
# This library is free software: you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with Radicale. If not, see <http://www.gnu.org/licenses/>.
2010-04-12 12:23:22 +02:00
"""
2012-03-20 18:41:14 +01:00
Radicale CalDAV and CardDAV server
==================================
2010-04-12 12:23:22 +02:00
2012-03-20 18:41:14 +01:00
The Radicale Project is a CalDAV (calendar) and CardDAV (contact) server. It
aims to be a light solution, easy to use, easy to install, easy to configure.
As a consequence, it requires few software dependances and is pre-configured to
work out-of-the-box.
2010-04-13 01:30:47 +02:00
2010-04-13 01:59:13 +02:00
The Radicale Project runs on most of the UNIX-like platforms (Linux, BSD,
MacOS X) and Windows. It is known to work with Evolution, Lightning, iPhone
2011-04-02 12:03:33 +02:00
and Android clients. It is free and open-source software, released under GPL
version 3.
2010-04-13 01:30:47 +02:00
For further information, please visit the `Radicale Website
<http://www.radicale.org/>`_.
2010-04-12 12:23:22 +02:00
"""
2015-01-05 00:41:50 +01:00
from setuptools import setup
import radicale
# When the version is updated, ``radicale.VERSION`` must be modified.
# A new section in the ``NEWS`` file must be added too.
2009-09-01 19:09:11 +02:00
setup(
name="Radicale",
version=radicale.VERSION,
2012-03-20 18:41:14 +01:00
description="CalDAV and CardDAV Server",
2010-04-13 01:30:47 +02:00
long_description=__doc__,
2009-09-01 19:09:11 +02:00
author="Guillaume Ayoub",
author_email="guillaume.ayoub@kozea.fr",
url="http://www.radicale.org/",
download_url=("http://pypi.python.org/packages/source/R/Radicale/"
"Radicale-%s.tar.gz" % radicale.VERSION),
2009-09-01 19:09:11 +02:00
license="GNU GPL v3",
2010-04-13 01:30:47 +02:00
platforms="Any",
2015-01-12 18:40:42 +01:00
packages=[
"radicale", "radicale.auth", "radicale.storage", "radicale.rights"],
2010-04-13 01:30:47 +02:00
provides=["radicale"],
scripts=["bin/radicale"],
keywords=["calendar", "addressbook", "CalDAV", "CardDAV"],
2010-04-13 01:30:47 +02:00
classifiers=[
2015-09-14 11:55:49 +02:00
"Development Status :: 5 - Production/Stable",
2010-04-13 01:30:47 +02:00
"Environment :: Console",
"Environment :: Web Environment",
"Intended Audience :: End Users/Desktop",
"Intended Audience :: Information Technology",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Operating System :: OS Independent",
"Programming Language :: Python :: 2",
"Programming Language :: Python :: 2.6",
"Programming Language :: Python :: 2.7",
2010-04-13 01:30:47 +02:00
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
2011-04-02 12:06:08 +02:00
"Programming Language :: Python :: 3.2",
2013-06-28 16:21:56 +02:00
"Programming Language :: Python :: 3.3",
2014-04-15 18:24:44 +02:00
"Programming Language :: Python :: 3.4",
2010-04-13 01:30:47 +02:00
"Topic :: Office/Business :: Groupware"])