Add setup.py with friends

This commit is contained in:
Stein Magnus Jodal 2010-03-22 23:44:17 +01:00
parent 4e00b89af0
commit fe7f58c6fa
3 changed files with 67 additions and 0 deletions

4
MANIFEST.in Normal file
View File

@ -0,0 +1,4 @@
include COPYING
include *.rst
include requirements*.txt
recursive-include docs *.rst

5
bin/mopidy Normal file
View File

@ -0,0 +1,5 @@
#! /usr/bin/env python
if __name__ == '__main__':
from mopidy.__main__ import main
main()

58
setup.py Normal file
View File

@ -0,0 +1,58 @@
from distutils.core import setup
from distutils.command.install import INSTALL_SCHEMES
import os
from mopidy import get_version
def fullsplit(path, result=None):
"""
Split a pathname into components (the opposite of os.path.join) in a
platform-neutral way.
"""
if result is None:
result = []
head, tail = os.path.split(path)
if head == '':
return [tail] + result
if head == path:
return result
return fullsplit(head, [tail] + result)
# Tell distutils to put the data_files in platform-specific installation
# locations. See here for an explanation:
# http://groups.google.com/group/comp.lang.python/browse_thread/thread/35ec7b2fed36eaec/2105ee4d9e8042cb
for scheme in INSTALL_SCHEMES.values():
scheme['data'] = scheme['purelib']
# Compile the list of packages available, because distutils doesn't have
# an easy way to do this.
packages, data_files = [], []
root_dir = os.path.dirname(__file__)
if root_dir != '':
os.chdir(root_dir)
project_dir = 'mopidy'
for dirpath, dirnames, filenames in os.walk(project_dir):
# Ignore dirnames that start with '.'
for i, dirname in enumerate(dirnames):
if dirname.startswith('.'):
del dirnames[i]
if '__init__.py' in filenames:
packages.append('.'.join(fullsplit(dirpath)))
elif filenames:
data_files.append([dirpath,
[os.path.join(dirpath, f) for f in filenames]])
setup(
name='Mopidy',
version=get_version(),
author='Stein Magnus Jodal',
author_email='stein.magnus@jodal.no',
packages=packages,
data_files=data_files,
scripts=['bin/mopidy'],
url='http://www.mopidy.com/',
license='GPLv2',
description='MPD server with Spotify support',
long_description=open('README.rst').read(),
)