setup.py 706 B

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