setup.py 729 B

123456789101112131415161718192021222324252627
  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. 'webbot',
  17. 'cfscrape'
  18. ],
  19. classifiers=[
  20. "Programming Language :: Python :: 3",
  21. "License :: OSI Approved :: Apache Software License",
  22. "Operating System :: OS Independent",
  23. ],
  24. )