Fixing last bits.
This commit is contained in:
parent
a74b8d4858
commit
bb1e73fd6c
|
@ -23,7 +23,7 @@ steps:
|
||||||
- name: publish
|
- name: publish
|
||||||
image: plugins/pypi
|
image: plugins/pypi
|
||||||
settings:
|
settings:
|
||||||
username: syntaxerrormmm
|
username: __token__
|
||||||
password:
|
password:
|
||||||
from_secret: pypi
|
from_secret: pypi
|
||||||
|
|
||||||
|
|
8
setup.py
8
setup.py
|
@ -3,12 +3,18 @@
|
||||||
# vim:sts=4:sw=4
|
# vim:sts=4:sw=4
|
||||||
"""Helps building and automatizing building LibreOffice AppImages."""
|
"""Helps building and automatizing building LibreOffice AppImages."""
|
||||||
|
|
||||||
|
from pathlib import Path
|
||||||
from setuptools import setup,find_packages
|
from setuptools import setup,find_packages
|
||||||
|
|
||||||
|
this_directory = Path(__file__).parent
|
||||||
|
long_description = (this_directory / "README.md").read_text()
|
||||||
|
|
||||||
setup(
|
setup(
|
||||||
name="loaih",
|
name="loaih",
|
||||||
version="1.3.2",
|
version="1.3.2",
|
||||||
description="LOAIH - LibreOffice AppImage Helpers, help build a LibreOffice AppImage",
|
description="LOAIH - LibreOffice AppImage Helpers, help build a LibreOffice AppImage",
|
||||||
|
long_description=long_description,
|
||||||
|
long_description_content_type='text/markdown',
|
||||||
author="Emiliano Vavassori",
|
author="Emiliano Vavassori",
|
||||||
author_email="syntaxerrormmm@libreoffice.org",
|
author_email="syntaxerrormmm@libreoffice.org",
|
||||||
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
packages=find_packages(exclude=['contrib', 'docs', 'tests']),
|
||||||
|
@ -19,5 +25,5 @@ setup(
|
||||||
},
|
},
|
||||||
install_requires=[ 'click', 'lxml', 'packaging', 'pyyaml' ],
|
install_requires=[ 'click', 'lxml', 'packaging', 'pyyaml' ],
|
||||||
license='MIT',
|
license='MIT',
|
||||||
url='https://git.libreitalia.org/LibreItalia/loappimage-helpers/',
|
url='https://git.libreitalia.org/LibreItalia/loaih/',
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in New Issue