Skip to content

Commit

Permalink
update setup.py
Browse files Browse the repository at this point in the history
  • Loading branch information
gvalkov committed Dec 7, 2013
1 parent 8cd522e commit e09ead0
Showing 1 changed file with 4 additions and 9 deletions.
13 changes: 4 additions & 9 deletions setup.py 100755 → 100644
Expand Up @@ -6,8 +6,6 @@


here = abspath(dirname(__file__))
requires = ('evdev',)
#test_requires = ('pytest',)

classifiers = (
'Development Status :: 3 - Alpha',
Expand All @@ -24,21 +22,18 @@
kw = {
'name' : 'pyzmo',
'version' : '0.1.0',

'description' : 'tiny hotkey library based on python-evdev',
'long_description' : open(join(here, 'README.rst')).read(),

'author' : 'Georgi Valkov',
'author_email' : 'georgi.t.valkov@gmail.com',
'license' : 'New BSD License',
'license' : 'Revised BSD License',
'url' : 'https://github.com/gvalkov/pyzmo',

'keywords' : 'evdev hotkey',
'classifiers' : classifiers,

'packages' : ['pyzmo'],
'install_requires' : requires,
'install_requires' : ['evdev', 'hy'],
'zip_safe' : True,
}

setup(**kw)
if __name__ == '__main__':
setup(**kw)

0 comments on commit e09ead0

Please sign in to comment.