setup.py 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. #!/usr/bin/python3
  2. # saurch, an AUR helper
  3. #
  4. # Copyright (C) 2022 Vitali64 <vitali64pmemail@protonmail.com>
  5. # This program is free software: you can redistribute it and/or modify
  6. # it under the terms of the GNU General Public License as published by
  7. # the Free Software Foundation, either version 3 of the License, or
  8. # (at your option) any later version.
  9. # This program is distributed in the hope that it will be useful,
  10. # but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. # GNU General Public License for more details.
  13. # You should have received a copy of the GNU General Public License
  14. # along with this program. If not, see <https://www.gnu.org/licenses/>.
  15. import setuptools
  16. with open("README.md", "r", encoding="utf-8") as fh:
  17. long_description = fh.read()
  18. setuptools.setup(
  19. name="saurch-vitali64",
  20. version="0.1git",
  21. author="Vitali64",
  22. author_email="vitali64pmemail@protonmail.com",
  23. description="A small aur command helper",
  24. long_description=long_description,
  25. long_description_content_type="text/markdown",
  26. url="http://vitali64.duckdns.org/?p=utils/saurch.git;a=summary",
  27. project_urls={
  28. "Bug Tracker": "https://github.com/pypa/sampleproject/issues",
  29. },
  30. classifiers=[
  31. "Programming Language :: Python :: 3",
  32. "License :: GPLv3 License",
  33. "Operating System :: Arch Linux",
  34. ],
  35. packages=['saurch'],
  36. python_requires=">=3.6",
  37. entry_points={
  38. 'console_scripts': [
  39. 'saurch = saurch.__main__:main',
  40. ],
  41. },
  42. )