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