setup.py 936 B

1234567891011121314151617181920212223242526272829303132333435
  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="1.3.3",
  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="https://github.com/joostsijm/rival_regions_wrapper",
  14. packages=setuptools.find_packages('src'),
  15. package_dir={'': 'src'},
  16. install_requires=[
  17. "appdirs",
  18. "beautifulsoup4",
  19. "cfscrape",
  20. "python-dateutil",
  21. "pathlib2",
  22. "requests",
  23. "selenium-stealth",
  24. "webbot",
  25. "python-anticaptcha",
  26. ],
  27. classifiers=[
  28. "Programming Language :: Python :: 3",
  29. "License :: OSI Approved :: Apache Software License",
  30. "Operating System :: OS Independent",
  31. ],
  32. )