setup.py 930 B

12345678910111213141516171819202122232425262728293031
  1. from setuptools import setup, find_packages
  2. with open("README.md", "r") as fh:
  3. long_description = fh.read()
  4. requirements = ["opentele", "aiosqlite", "pyrogram"]
  5. setup(
  6. name="TGConvertor",
  7. version="0.0.8",
  8. packages=find_packages(),
  9. entry_points={
  10. "console_scripts": [
  11. "mycommand = mypackage.mymodule:__main__",
  12. ],
  13. },
  14. description="This module is small util for easy converting Telegram sessions to various formats",
  15. long_description=long_description,
  16. long_description_content_type="text/markdown",
  17. author="nazar220160",
  18. author_email="nazar.fedorowych@gmail.com",
  19. url="https://github.com/nazar220160/TGConvertor",
  20. requires=requirements,
  21. scripts=["TGConvertor/__main__.py"],
  22. classifiers=[
  23. "Programming Language :: Python :: 3.8",
  24. "License :: OSI Approved :: MIT License",
  25. "Operating System :: OS Independent",
  26. ],
  27. )