Queer European MD passionate about IT

setup.py 2.2 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576
  1. """Setup."""
  2. import codecs
  3. import os
  4. import re
  5. import setuptools
  6. import sys
  7. if sys.version_info < (3, 5):
  8. raise RuntimeError("Python3.5+ is needed to run async code")
  9. here = os.path.abspath(os.path.dirname(__file__))
  10. def read(*parts):
  11. """Read file in `part.part.part.part.ext`.
  12. Start from `here` and follow the path given by `*parts`
  13. """
  14. with codecs.open(os.path.join(here, *parts), 'r') as fp:
  15. return fp.read()
  16. def find_information(info, *file_path_parts):
  17. """Read information in file."""
  18. version_file = read(*file_path_parts)
  19. version_match = re.search(
  20. r"^__{info}__ = ['\"]([^'\"]*)['\"]".format(
  21. info=info
  22. ),
  23. version_file,
  24. re.M
  25. )
  26. if version_match:
  27. return version_match.group(1)
  28. raise RuntimeError("Unable to find version string.")
  29. with open("README.md", "r") as readme_file:
  30. long_description = readme_file.read()
  31. setuptools.setup(
  32. name='davtelepot',
  33. version=find_information("version", "davtelepot", "__init__.py"),
  34. author=find_information("author", "davtelepot", "__init__.py"),
  35. author_email=find_information("email", "davtelepot", "__init__.py"),
  36. description=(
  37. "Telegram bot API mirroring class, featuring dataset-powered "
  38. "SQLite databases."
  39. ),
  40. license=find_information("license", "davtelepot", "__init__.py"),
  41. long_description=long_description,
  42. long_description_content_type="text/markdown",
  43. url="https://gogs.davte.it/davte/davtelepot",
  44. packages=setuptools.find_packages(),
  45. platforms=['any'],
  46. install_requires=[
  47. 'aiohttp',
  48. 'bs4',
  49. 'dataset',
  50. ],
  51. python_requires='>=3.5',
  52. classifiers=[
  53. "Development Status :: 5 - Production/Stable",
  54. "Environment :: Console",
  55. "Framework :: AsyncIO",
  56. "Intended Audience :: Developers",
  57. "License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
  58. "Natural Language :: English",
  59. "Operating System :: OS Independent",
  60. "Programming Language :: Python :: 3 :: Only",
  61. "Topic :: Communications :: Chat",
  62. ],
  63. keywords='telegram bot python asyncio async aiohttp',
  64. include_package_data=True,
  65. )