Skip to content

Commit

Permalink
Stick to distutils
Browse files Browse the repository at this point in the history
It's the standard tool for python packaging
  • Loading branch information
joh committed Oct 26, 2013
1 parent 861b04a commit 7fb2cd1
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
@@ -1,6 +1,6 @@
#!/usr/bin/env python

from setuptools import setup
from distutils.core import setup

setup(name='when-changed',
version='0.2.0',
Expand All @@ -9,6 +9,6 @@
url='https://github.com/joh/when-changed',
packages=['whenchanged'],
scripts=['when-changed'],
install_requires=['pyinotify'],
requires=['pyinotify'],
license='BSD'
)

0 comments on commit 7fb2cd1

Please sign in to comment.