Remove wrong file and fix setup
This commit is contained in:
parent
2484ffa6b5
commit
dd652c3a0c
19
setup.py
19
setup.py
@ -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)
|
||||
|
||||
|
||||
19
setup.py2
19
setup.py2
@ -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',
|
||||
)
|
||||
|
||||
@ -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)
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user