From d7058ec33e8a0cdbb85066b56a4a6e292ce8ca37 Mon Sep 17 00:00:00 2001 From: Pablo Castellano Date: Sun, 26 Oct 2014 18:36:32 +0100 Subject: [PATCH] [libcnml] Release version 0.8 --- MANIFEST.in | 3 +++ NEWS | 2 +- setup.py | 7 +++++-- 3 files changed, 9 insertions(+), 3 deletions(-) diff --git a/MANIFEST.in b/MANIFEST.in index a23e0a4..2190742 100644 --- a/MANIFEST.in +++ b/MANIFEST.in @@ -1,2 +1,5 @@ include libcnml/cnml.dtd +include NEWS +include LICENSE.txt recursive-include libcnml/tests/data *cnml +exclude MANIFEST.in diff --git a/NEWS b/NEWS index d531ff0..d884f1d 100644 --- a/NEWS +++ b/NEWS @@ -1,4 +1,4 @@ -24 Aug 2012: +26 Oct 2014: - Release 0.8 - Support new "inactive" status - Added new Status.get_status_list() static method diff --git a/setup.py b/setup.py index a9b0bf3..7c9667a 100644 --- a/setup.py +++ b/setup.py @@ -2,16 +2,19 @@ from setuptools import setup -VERSION = '0.7' +VERSION = '0.8' setup( name='libcnml', + packages=['libcnml'], version=VERSION, description="A CNML parser for Python", long_description=open('README.txt').read(), author='Pablo Castellano', author_email='pablo@anche.no', - packages=['libcnml'], + url='https://github.com/PabloCastellano/guifinetstudio', + download_url='https://github.com/PabloCastellano/guifinetstudio/releases/tag/libcnml_0.8', + keywords = ['cnml', 'free networks', 'guifi.net'], license='GPLv3+', data_files=[('', ['LICENSE.txt'])], include_package_data=True,