diff --git a/AUTHORS b/AUTHORS deleted file mode 100644 index f16a0a7..0000000 --- a/AUTHORS +++ /dev/null @@ -1,5 +0,0 @@ -relatorio is the work of: - Nicolas Évrard - Gaëtan de Menten - Cédric Krier - Udo Spallek diff --git a/CHANGES b/CHANGELOG similarity index 100% rename from CHANGES rename to CHANGELOG diff --git a/COPYRIGHT b/COPYRIGHT new file mode 100644 index 0000000..fad50b4 --- /dev/null +++ b/COPYRIGHT @@ -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. diff --git a/MANIFEST.in b/MANIFEST.in index b3b67e6..31c1deb 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -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 diff --git a/setup.py b/setup.py index e063615..e57c4dd 100644 --- a/setup.py +++ b/setup.py @@ -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="nicolas.evrard@b2ck.com", - maintainer="Cedric Krier", - maintainer_email="cedric.krier@b2ck.com", description="A templating library able to output odt and pdf files", long_description=read('README'), + author='Tryton', + author_email='relatorio@tryton.org', + 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']),