| 123456789101112131415161718192021222324252627282930313233 | """Setup file"""import setuptoolswith open("README.md", "r") as fh:    LONG_DESCRIPTION = fh.read()setuptools.setup(    name="rival_regions_wrapper",    version="0.1.0",    author="Joost Sijm",    author_email="joostsijm@gmail.com",    description="Rival Regions API wrapper",    long_description=LONG_DESCRIPTION,    long_description_content_type="text/markdown",    url="https://github.com/joostsijm/rival_regions_wrapper",    packages=setuptools.find_packages('src'),    package_dir={'': 'src'},    install_requires=[        "appdirs",        "beautifulsoup4",        "cfscrape",        "requests",        "webbot",        "python-dateutil",        "pathlib2",    ],    classifiers=[        "Programming Language :: Python :: 3",        "License :: OSI Approved :: Apache Software License",        "Operating System :: OS Independent",    ],)
 |