Skip to content

Commit

Permalink
Merge pull request #5 from tatsy/development
Browse files Browse the repository at this point in the history
Add 2.x compatible code.
  • Loading branch information
tatsy committed May 29, 2017
2 parents d133132 + 5b54284 commit a82d73e
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
3 changes: 3 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,9 @@
*.jpeg
*.gif

# System swap file (MacOS)
*.swp

# Others
node_modules/*
public/*
Expand Down
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -1,7 +1,10 @@
from __future__ import print_function

import os
import sys
import site
import shutil
from six import add_metaclass
from distutils.sysconfig import get_python_lib
from setuptools import setup, find_packages, Extension
from setuptools.command.install import install as install_default
Expand Down Expand Up @@ -46,7 +49,7 @@ def prebuild():
# Install
class install(install_default):
def run(self):
super(install, self).run()
install_default.run(self)

# Check build.
prebuild()
Expand Down

0 comments on commit a82d73e

Please sign in to comment.