Remove wrong file and fix setup

This commit is contained in:
Tomasz Fluxid Kowalczyk 2012-01-29 22:05:48 +01:00
parent 2484ffa6b5
commit dd652c3a0c
3 changed files with 15 additions and 32 deletions

View File

@ -1,13 +1,12 @@
#!/usr/bin/env python
from setuptools import setup, find_packages
#coding:utf8
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']),
from setuptools import setup
from setup_common import common_info
info = dict(
common_info,
scripts = ['sync_mplayer.py', 'sync_mpc.py', 'run_sync_server.py'],
install_requires = ['Twisted>=11.1'],
)
setup(**info)

View File

@ -1,19 +0,0 @@
from setuptools import setup, find_packages
import sys
if sys.version_info < (3,):
print('Sorry, this package is developed for Python 3')
exit(1)
setup(
name = 'pyhaa',
version = '0.0',
packages = find_packages(exclude=['tests']),
author = 'Tomasz Kowalczyk',
author_email = 'code@fluxid.pl',
description = 'Standalone templating system inspired by HAML',
keywords = 'haml templating',
tests_require = ['nose'],
test_suite = 'nose.collector',
)

View File

@ -1,11 +1,14 @@
#!/usr/bin/env python
#coding:utf8
from setuptools import setup
from setup_common import common
import py2exe
from setup_common import common_info
info = dict(
common,
scripts = ['sync_mplayer.py', 'sync_mpc.py', 'run_sync_server.py'],
common_info,
console = ['sync_mplayer.py', 'sync_mpc.py', 'run_sync_server.py'],
)
setup(**info)