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.

13 lines
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. )