-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
5 changed files
with
33 additions
and
16 deletions.
There are no files selected for viewing
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
Copyright (C) 2008-2017 Nicolas Évrard | ||
Copyright (C) 2008-2009 Gaëtan de Menten | ||
Copyright (C) 2008-2020 Cédric Krier | ||
Copyright (C) 2008 Udo Spallek | ||
|
||
This program is free software; you can redistribute it and/or | ||
modify it under the terms of the GNU General Public License | ||
as published by the Free Software Foundation; either version 2 | ||
of the License, or (at your option) any later version. | ||
|
||
This program is distributed in the hope that it will be useful, | ||
but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
GNU General Public License for more details. | ||
|
||
You should have received a copy of the GNU General Public License | ||
along with this program; if not, write to the Free Software | ||
Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,5 @@ | ||
include AUTHORS | ||
include CHANGES | ||
include LICENSE | ||
include COPYRIGHT | ||
include README | ||
include CHANGELOG | ||
include doc/* | ||
include relatorio/tests/*.jpg | ||
include relatorio/tests/*.odt | ||
include relatorio/tests/*.png | ||
include relatorio/tests/templates/*.tmpl |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,15 +14,22 @@ def get_version(): | |
'__init__.py')).read() | ||
return re.search(r"""__version__ = '([0-9.]*)'""", init).group(1) | ||
|
||
|
||
setup( | ||
name="relatorio", | ||
url="http://relatorio.tryton.org/", | ||
author="Nicolas Evrard", | ||
author_email="[email protected]", | ||
maintainer="Cedric Krier", | ||
maintainer_email="[email protected]", | ||
description="A templating library able to output odt and pdf files", | ||
long_description=read('README'), | ||
author='Tryton', | ||
author_email='[email protected]', | ||
url='https://pypi.python.org/pypi/relatorio', | ||
download_url='https://downloads.tryton.org/relatorio/', | ||
project_urls={ | ||
"Bug Tracker": 'https://relatorio.tryton.org/', | ||
"Documentation": 'https://relatorio.readthedocs.org/', | ||
"Forum": 'https://discuss.tryton.org/tags/relatorio', | ||
"Source Code": 'https://hg.tryton.org/relatorio/', | ||
}, | ||
keywords='templating OpenDocument PDF', | ||
license="GPL License", | ||
version=get_version(), | ||
packages=find_packages(exclude=['examples']), | ||
|