Skip to content

Commit

Permalink
Switch to setuptools and use install_requires
Browse files Browse the repository at this point in the history
This fixes joh#17 and allows dependencies like pyinotify to be installed
automatically.
  • Loading branch information
joh committed Apr 21, 2014
1 parent 4087bfe commit 6237b00
Showing 1 changed file with 3 additions and 5 deletions.
8 changes: 3 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,15 +1,13 @@
#!/usr/bin/env python

from distutils.core import setup
from setuptools import setup

setup(name='when-changed',
version='0.2.0',
version='0.2.1',
description='Run a command when a file is changed',
author='Johannes H. Jensen',
author_email='[email protected]',
url='https://github.com/joh/when-changed',
packages=['whenchanged'],
scripts=['when-changed'],
requires=['pyinotify'],
install_requires=['pyinotify'],
license='BSD'
)

0 comments on commit 6237b00

Please sign in to comment.