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