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