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

13 行
425B

  1. import setuptools
  2. # TODO: This needs to generate a config and make sure it is installed
  3. setuptools.setup(
  4. name="Seating Plan Generator",
  5. author="Roxanne Gibson",
  6. author_email="me@roxanne.dev",
  7. description="Script to generate a seating plan via Office365 Calendars",
  8. packages=["seatingplan"],
  9. entry_points={"console_scripts": ["seatingplan=seatingplan.__main__:main"]},
  10. python_requires=">=3.5",
  11. )