You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

40 lines
1.3KB

  1. # Copyright (C) 2019 Campaign Against Arms Trade
  2. #
  3. # This program is free software: you can redistribute it and/or modify
  4. # it under the terms of the GNU General Public License as published by
  5. # the Free Software Foundation, either version 3 of the License, or
  6. # (at your option) any later version.
  7. #
  8. # This program is distributed in the hope that it will be useful,
  9. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. # GNU General Public License for more details.
  12. # You should have received a copy of the GNU General Public License
  13. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  14. import sys
  15. import setuptools
  16. if sys.version_info < (3, 5):
  17. sys.exit('Python 3.5 is required to run Supper')
  18. LONG_DESC = open('readme.md').read()
  19. setuptools.setup(
  20. name="Supper",
  21. author="Roxanne Gibson",
  22. author_email="me@roxanne.dev",
  23. description="Script to generate a seating plan via Office365 Calendars",
  24. long_description_content_type="text/markdown",
  25. long_description=LONG_DESC,
  26. packages=["supper"],
  27. entry_points={"console_scripts": ["supper=supper.__main__:main"]},
  28. python_requires=">=3.5",
  29. install_requires=("o365==2.0.1", "pyyaml==5.1.1"),
  30. version="1.1.0",
  31. license="GPL-3"
  32. )