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