setup.py 2.7 KB

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