Added setup.py
This commit is contained in:
parent
9eb639ad4e
commit
c5383413ba
4
.gitignore
vendored
4
.gitignore
vendored
@ -1,3 +1,7 @@
|
||||
*.py[co]
|
||||
.*.sw[po]
|
||||
venv
|
||||
|
||||
/SyncPlay.egg-info
|
||||
/build
|
||||
/dist
|
||||
|
||||
13
setup.py
Executable file
13
setup.py
Executable 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'],
|
||||
)
|
||||
Loading…
x
Reference in New Issue
Block a user