setup.py 795 B

123456789101112131415161718192021222324252627282930
  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. ],
  22. classifiers=[
  23. "Programming Language :: Python :: 3",
  24. "License :: OSI Approved :: Apache Software License",
  25. "Operating System :: OS Independent",
  26. ],
  27. )