__init__.py 1.0 KB

1234567891011121314151617181920212223242526272829
  1. # -*- coding: utf-8 -*-
  2. """
  3. tkcalendar - Calendar and DateEntry widgets for Tkinter
  4. Copyright 2017-2018 Juliette Monsel <j_4321@protonmail.com>
  5. with contributions from:
  6. - Neal Probert (https://github.com/nprobert)
  7. - arahorn28 (https://github.com/arahorn28)
  8. tkcalendar is free software: you can redistribute it and/or modify
  9. it under the terms of the GNU General Public License as published by
  10. the Free Software Foundation, either version 3 of the License, or
  11. (at your option) any later version.
  12. tkcalendar 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. You should have received a copy of the GNU General Public License
  17. along with this program. If not, see <http://www.gnu.org/licenses/>.
  18. tkcalendar module providing Calendar and DateEntry widgets
  19. """
  20. from tkcalendar.dateentry import DateEntry
  21. from tkcalendar.calendar_ import Calendar
  22. __version__ = '1.5.0'