您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

19 行
584B

  1. import setuptools
  2. # TODO: This needs to generate a config and make sure it is installed
  3. LONG_DESC = open('readme.md').read()
  4. setuptools.setup(
  5. name="Seating Plan Generator",
  6. author="Roxanne Gibson",
  7. author_email="me@roxanne.dev",
  8. description="Script to generate a seating plan via Office365 Calendars",
  9. long_description_content_type="text/markdown",
  10. long_description=LONG_DESC,
  11. packages=["seatingplan"],
  12. entry_points={"console_scripts": ["seatingplan=seatingplan.__main__:main"]},
  13. python_requires=">=3.5",
  14. install_requires=("o365==2.0.1")
  15. )