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

from distutils.core import setup
import shutil

shutil.copyfile('nephilim.py', 'nephilim/nephilim')

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      = ['nephilim/nephilim']
)