diff --git a/.gitignore b/.gitignore index 6de0910..56f7af2 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,7 @@ *.py[co] .*.sw[po] venv + +/SyncPlay.egg-info +/build +/dist diff --git a/setup.py b/setup.py new file mode 100755 index 0000000..3063f60 --- /dev/null +++ b/setup.py @@ -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'], +)