Skip to content

Commit 0b8f4c7

Browse files
committed
setup.py: Change distutils to setuptools
Closes #120
1 parent c36c147 commit 0b8f4c7

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

setup.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
from __future__ import absolute_import
66

77
import ast
8-
from distutils import core
8+
from setuptools import setup
99
import os
1010

1111

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

1919

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

0 commit comments

Comments
 (0)