setup.py 2.9 KB

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