aboutsummaryrefslogtreecommitdiffstats
path: root/setup.py
diff options
context:
space:
mode:
authorLibravatarDererk <dererk@satellogic.com>2016-11-15 14:18:46 -0300
committerLibravatarDererk <dererk@satellogic.com>2016-11-15 14:18:46 -0300
commitffb671c61a24a9086343b54bad080e145ff33fc5 (patch)
tree2c5291f7a34edf4afdc8e07887a148291bfa3fa1 /setup.py
parent4e3224c012df9f74f010eb92203520515e8537b9 (diff)
New upstream version 7.8.1upstream/7.8.1
Diffstat (limited to 'setup.py')
-rwxr-xr-xsetup.py13
1 files changed, 7 insertions, 6 deletions
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'
]