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 6fa12a5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,7 @@ python:
- "nightly"

install:
- pip3 install pycparser
- python setup.py --quiet install

script:
Expand Down
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 6fa12a5

Please sign in to comment.