syncplay/setup_common.py
2012-01-29 21:47:42 +01:00

14 lines
400 B
Python

#coding:utf8
from setuptools import find_packages
common_info = dict(
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']),
install_requires = ['Twisted>=11.1'],
)