Preparing for new release.
This commit is contained in:
parent
f45de93abc
commit
0ae6f4f314
|
@ -26,9 +26,9 @@ copyright = '2019-2021, Franco Masotti'
|
|||
author = 'Franco Masotti'
|
||||
|
||||
# The short X.Y version
|
||||
version = '2.0.8'
|
||||
version = '2.0.9'
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = '2.0.8'
|
||||
release = '2.0.9'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
Contributing
|
||||
============
|
||||
|
||||
`Contributing [common] <https://docs.franco.net.eu.org/fpydocs/contributing_common.html>`_ version `4.0.0 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.0.0>`_
|
||||
`Contributing [common] <https://docs.franco.net.eu.org/fpydocs/contributing_common.html>`_ version `4.1.2 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.1.2>`_
|
||||
|
||||
TODO and FIXME
|
||||
--------------
|
||||
|
|
|
@ -1,4 +1,4 @@
|
|||
Workflow
|
||||
========
|
||||
|
||||
`Workflow [common] <https://docs.franco.net.eu.org/fpydocs/workflow_common.html>`_ version `4.0.0 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.0.0>`_
|
||||
`Workflow [common] <https://docs.franco.net.eu.org/fpydocs/workflow_common.html>`_ version `4.1.2 <https://software.franco.net.eu.org/frnmst/fpydocs/src/tag/4.1.2>`_
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
# Maintainer: Franco Masotti <franco dot masotti at live dot com>
|
||||
# Contributor: Franco Masotti <franco dot masotti at live dot com>
|
||||
pkgname=python-fattura_elettronica_reader
|
||||
pkgver=2.0.8
|
||||
pkgver=2.0.9
|
||||
pkgrel=1
|
||||
pkgdesc="A utility that is able to check and extract electronic invoice received from the Sistema di Interscambio"
|
||||
arch=('any')
|
||||
|
@ -10,7 +10,7 @@ license=('GPL3')
|
|||
depends=('python'
|
||||
'python-setuptools'
|
||||
'python-atomicwrites=1.4.0'
|
||||
'python-filetype=1.0.7'
|
||||
'python-filetype=1.0.8'
|
||||
'python-appdirs=1.4.4'
|
||||
'python-requests=2.26.0'
|
||||
'python-lxml=4.6.3',
|
||||
|
|
4
setup.py
4
setup.py
|
@ -24,7 +24,7 @@ from setuptools import find_packages, setup
|
|||
|
||||
setup(
|
||||
name='fattura_elettronica_reader',
|
||||
version='2.0.8',
|
||||
version='2.0.9',
|
||||
packages=find_packages(exclude=['*tests*']),
|
||||
license='GPL',
|
||||
description='A utility that is able to check and extract electronic invoice received from the Sistema di Interscambio.',
|
||||
|
@ -37,7 +37,7 @@ setup(
|
|||
author_email='franco.masotti@tutanota.com',
|
||||
keywords='invoice reader SDI',
|
||||
url='https://blog.franco.net.eu.org/software/#fattura-elettronica-reader',
|
||||
python_requires='>=3.5, <4',
|
||||
python_requires='>=3.5,<4',
|
||||
entry_points={
|
||||
'console_scripts': [
|
||||
'fattura_elettronica_reader=fattura_elettronica_reader.__main__:main',
|
||||
|
|
Loading…
Reference in New Issue