setup.py 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. from setuptools import setup
  2. NAME = "db0mb3r"
  3. DESCRIPTION = "Открытый и бесплатный СМС бомбер"
  4. URL = "https://github.com/dmitrijkotov634/b0mb3r"
  5. EMAIL = ""
  6. AUTHOR = "crinny"
  7. REQUIRES_PYTHON = ">=3.7.0"
  8. VERSION = "3.1.4.17"
  9. with open("requirements.txt", encoding="utf-8") as f:
  10. REQUIRED = f.readlines()
  11. try:
  12. with open("README.md", encoding="utf-8") as f:
  13. long_description = "\n" + f.read()
  14. except FileNotFoundError:
  15. long_description = DESCRIPTION
  16. setup(
  17. name=NAME,
  18. version=VERSION,
  19. description=DESCRIPTION,
  20. long_description=DESCRIPTION,
  21. long_description_content_type="text/markdown",
  22. author=AUTHOR,
  23. author_email=EMAIL,
  24. python_requires=REQUIRES_PYTHON,
  25. url=URL,
  26. packages=["db0mb3r"],
  27. entry_points={
  28. "console_scripts": ["db0mb3r=db0mb3r.cli:main", "dbomber=db0mb3r.cli:main", "b0mb3r=db0mb3r.cli:main", "bomber=db0mb3r.cli:main"]
  29. },
  30. install_requires=REQUIRED,
  31. extras_require={},
  32. package_data={"db0mb3r": ["services/*", "app/*", "app/*/*", "app/static/*/*"]},
  33. license="Mozilla Public License 2.0",
  34. classifiers=[
  35. "Programming Language :: Python",
  36. "Programming Language :: Python :: 3",
  37. "Programming Language :: Python :: 3.7",
  38. "Operating System :: Android",
  39. "Operating System :: Microsoft :: Windows",
  40. "Topic :: Internet",
  41. "License :: OSI Approved :: Mozilla Public License 2.0 (MPL 2.0)",
  42. ],
  43. )