From ffb671c61a24a9086343b54bad080e145ff33fc5 Mon Sep 17 00:00:00 2001 From: Dererk Date: Tue, 15 Nov 2016 14:18:46 -0300 Subject: New upstream version 7.8.1 --- setup.py | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) (limited to 'setup.py') diff --git a/setup.py b/setup.py index dd2cf12..64b5e9d 100755 --- a/setup.py +++ b/setup.py @@ -3,7 +3,6 @@ # Don't use __future__ in this script, it breaks buildout # from __future__ import print_function import os -import subprocess import sys import shutil from setuptools import setup, find_packages @@ -75,8 +74,8 @@ def expands_symlinks_for_windows(): path to the file it points to. If not corrected, installing from a git clone will end with some files with bad content - After install the working copy will be dirty (symlink markers overwritten with - real content) + After install the working copy will be dirty (symlink markers overwritten + with real content) """ if sys.platform != 'win32': return @@ -90,7 +89,8 @@ def expands_symlinks_for_windows(): sys.path = oldpath del sys.modules['winutils'] if failures != -1: - print('WARNING: your working copy is now dirty by changes in samplesite, sphinx and themes') + print('WARNING: your working copy is now dirty by changes in ' + 'samplesite, sphinx and themes') if failures > 0: raise Exception("Error: \n\tnot all symlinked files could be fixed." + "\n\tYour best bet is to start again from clean.") @@ -112,7 +112,7 @@ class nikola_install(install): setup(name='Nikola', - version='7.7.3', + version='7.8.1', description='A modular, fast, simple, static website and blog generator', long_description=open('README.rst').read(), author='Roberto Alsina and others', @@ -128,6 +128,7 @@ setup(name='Nikola', 'Intended Audience :: End Users/Desktop', 'License :: OSI Approved :: MIT License', 'Operating System :: MacOS', + 'Operating System :: MacOS :: MacOS X', 'Operating System :: Microsoft :: Windows', 'Operating System :: OS Independent', 'Operating System :: POSIX', @@ -152,7 +153,7 @@ setup(name='Nikola', 'docs/extending.txt']), ('share/man/man1', ['docs/man/nikola.1.gz']), ], - entry_points = { + entry_points={ 'console_scripts': [ 'nikola = nikola.__main__:main' ] -- cgit v1.2.3