setup.py 822 B

12345678910111213141516171819202122232425262728293031
  1. """Setup file"""
  2. import setuptools
  3. with open("README.md", "r") as fh:
  4. LONG_DESCRIPTION = fh.read()
  5. setuptools.setup(
  6. name="rival_regions_wrapper",
  7. version="0.1.0",
  8. author="Joost Sijm",
  9. author_email="joostsijm@gmail.com",
  10. description="Rival Regions API wrapper",
  11. long_description=LONG_DESCRIPTION,
  12. long_description_content_type="text/markdown",
  13. url="git@github.com:jjoo914/rival_regions_wrapper.git",
  14. packages=setuptools.find_packages(),
  15. install_requires=[
  16. "appdirs",
  17. "beautifulsoup4",
  18. "cfscrape",
  19. "requests",
  20. "webbot",
  21. "python-dateutil",
  22. ],
  23. classifiers=[
  24. "Programming Language :: Python :: 3",
  25. "License :: OSI Approved :: Apache Software License",
  26. "Operating System :: OS Independent",
  27. ],
  28. )