]> git.0d.be Git - chloro.git/blobdiff - setup.py
do not include non-feed posts on homepage
[chloro.git] / setup.py
index c11cbb80cac10037bcb4b175808628c1c03fc706..01bf6b66b226aee145afb44f04de2b6fc3765fe0 100644 (file)
--- a/setup.py
+++ b/setup.py
@@ -1,17 +1,16 @@
 #! /usr/bin/env python3
-# -*- coding: utf-8 -*-
 
 import os
 import re
 import subprocess
 import sys
-
-from setuptools.command.install_lib import install_lib as _install_lib
+from distutils.cmd import Command
 from distutils.command.build import build as _build
 from distutils.command.sdist import sdist
-from distutils.cmd import Command
 from distutils.spawn import find_executable
-from setuptools import setup, find_packages
+
+from setuptools import find_packages, setup
+from setuptools.command.install_lib import install_lib as _install_lib
 
 
 class eo_sdist(sdist):
@@ -31,7 +30,7 @@ def get_version():
     tag exists, take 0.0- and add the length of the commit log.
     """
     if os.path.exists('VERSION'):
-        with open('VERSION', 'r') as v:
+        with open('VERSION') as v:
             return v.read()
     if os.path.exists('.git'):
         p = subprocess.Popen(