Skip to content

Commit

Permalink
Update and normalize package data
Browse files Browse the repository at this point in the history
  • Loading branch information
cedk committed Feb 23, 2020
1 parent 8bf752c commit 31ab06d
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 16 deletions.
5 changes: 0 additions & 5 deletions AUTHORS

This file was deleted.

File renamed without changes.
18 changes: 18 additions & 0 deletions COPYRIGHT
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.
9 changes: 3 additions & 6 deletions MANIFEST.in
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
17 changes: 12 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']),
Expand Down

0 comments on commit 31ab06d

Please sign in to comment.