Skip to content

Commit

Permalink
setup.py: Change distutils to setuptools
Browse files Browse the repository at this point in the history
Closes #120
  • Loading branch information
kiy4h committed Nov 8, 2018
1 parent c36c147 commit 0b8f4c7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
from __future__ import absolute_import

import ast
from distutils import core
from setuptools import setup
import os


Expand All @@ -18,7 +18,7 @@ def version(filename):


with open('README.rst') as readme:
core.setup(
setup(
name='cppclean',
version=version(os.path.join('cpp', '__init__.py')),
description='Find problems in C++ source that slow development '
Expand Down

0 comments on commit 0b8f4c7

Please sign in to comment.