summaryrefslogtreecommitdiff
path: root/setup.py
blob: c2d539dae94ab7a32d7acc8ce5b3f81ab91b2508 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Nephilim installer script

from distutils.core import setup

setup(name         = 'nephilim',
      version      = '0.1',
      description  = 'Nephilim MPD client.',
      author       = 'Anton Khirnov',
      author_email = 'wyskas@gmail.com',
      classifiers  = [
          'Development Status :: 3 - Alpha',
          'Environment :: X11 Applications :: Qt',
          'Intended Audience :: End Users/desktop',
          'License :: OSI Approved :: GNU General Public License (GPL)',
          'Programming Language :: Python :: 2',
          'Topic :: Multimedia :: Sound/Audio :: Players'],
      packages     = ['nephilim', 'nephilim.plugins'],
      scripts      = ['scripts/nephilim']
)