loaih/setup.py

30 lines
926 B
Python
Raw 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
2022-03-20 22:57:45 +00:00
from setuptools import setup,find_packages
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",
2023-12-01 21:55:26 +00:00
version="1.3.2",
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-11-30 22:03:33 +00:00
install_requires=[ 'click', 'lxml', 'packaging', 'pyyaml' ],
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
)