Added setup.py

This commit is contained in:
Tomasz Fluxid Kowalczyk 2012-01-29 20:16:45 +01:00
parent 9eb639ad4e
commit c5383413ba
2 changed files with 17 additions and 0 deletions

4
.gitignore vendored
View File

@ -1,3 +1,7 @@
*.py[co]
.*.sw[po]
venv
/SyncPlay.egg-info
/build
/dist

13
setup.py Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
setup(
name = 'SyncPlay',
version = '0.1',
author = 'Tomasz Kowalczyk, Uriziel',
author_email = 'code@fluxid.pl',
description = 'Solution to synchronize playback of multiple MPlayer and MPC-HC instances over the network.',
packages = find_packages(exclude=['venv']),
scripts = ['sync_mplayer.py', 'sync_mpc.py', 'run_sync_server.py'],
install_requires = ['Twisted>=11.1'],
)