add installer script
[nephilim.git] / setup.py
blobc2d539dae94ab7a32d7acc8ce5b3f81ab91b2508
1 # Nephilim installer script
3 from distutils.core import setup
5 setup(name = 'nephilim',
6 version = '0.1',
7 description = 'Nephilim MPD client.',
8 author = 'Anton Khirnov',
9 author_email = 'wyskas@gmail.com',
10 classifiers = [
11 'Development Status :: 3 - Alpha',
12 'Environment :: X11 Applications :: Qt',
13 'Intended Audience :: End Users/desktop',
14 'License :: OSI Approved :: GNU General Public License (GPL)',
15 'Programming Language :: Python :: 2',
16 'Topic :: Multimedia :: Sound/Audio :: Players'],
17 packages = ['nephilim', 'nephilim.plugins'],
18 scripts = ['scripts/nephilim']