loaih/setup.py

30 lines
937 B
Python
Raw Permalink Normal View History

2022-03-20 22:57:45 +00:00
#!/usr/bin/env python
# encoding: utf-8
# vim:sts=4:sw=4
2023-01-07 20:48:24 +00:00
"""Helps building and automatizing building LibreOffice AppImages."""
2022-03-20 22:57:45 +00:00
2023-12-01 22:15:57 +00:00
from pathlib import Path
2023-12-31 21:08:28 +00:00
from setuptools import setup, find_packages
2022-03-20 22:57:45 +00:00
2023-12-01 22:15:57 +00:00
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
2022-03-20 22:57:45 +00:00
setup(
name="loaih",
2024-01-01 09:02:15 +00:00
version="1.3.3",
2022-03-20 22:57:45 +00:00
description="LOAIH - LibreOffice AppImage Helpers, help build a LibreOffice AppImage",
2023-12-01 22:15:57 +00:00
long_description=long_description,
long_description_content_type='text/markdown',
2022-03-20 22:57:45 +00:00
author="Emiliano Vavassori",
author_email="syntaxerrormmm@libreoffice.org",
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
entry_points={
'console_scripts': [
'loaih = loaih.script:cli',
],
},
2023-12-31 21:08:28 +00:00
install_requires=['click', 'lxml', 'packaging', 'pyyaml', 'requests'],
2022-03-20 22:57:45 +00:00
license='MIT',
2023-12-01 22:15:57 +00:00
url='https://git.libreitalia.org/LibreItalia/loaih/',
2022-03-20 22:57:45 +00:00
)