From deaa760550922e95abb24c219ac7398647803bdb Mon Sep 17 00:00:00 2001 From: Tyler Garner Date: Tue, 20 Jan 2015 20:22:19 -0500 Subject: [PATCH] Add metadata.py. --- geopdf/metadata.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 geopdf/metadata.py diff --git a/geopdf/metadata.py b/geopdf/metadata.py new file mode 100644 index 0000000..675467c --- /dev/null +++ b/geopdf/metadata.py @@ -0,0 +1,13 @@ +# -*- coding: utf-8 -*- + +package = 'geopdf' +project = "GeoPDF" +project_no_spaces = project.replace(' ', '') +version = '0.1' +description = 'Adds GeoPDF functionality to ReportLab.' +authors = ['Tyler Garner'] +authors_string = ', '.join(authors) +emails = ['garnertb@gmail.com'] +license = 'MIT' +copyright = '2015 ' + authors_string +url = 'http://garnertb.io/'