20 lines
569 B
Python
Executable File
20 lines
569 B
Python
Executable File
#!/usr/bin/python
|
|
|
|
from setuptools import setup
|
|
|
|
setup(
|
|
name='server22',
|
|
version='2.2.2',
|
|
description='Start a server, which listens on port 5000',
|
|
long_description='Server waits on client to join on localhost:5000.',
|
|
packages=['server22'],
|
|
install_requires=['docopt'],
|
|
package_dir={'':'src'},
|
|
entry_points={"console_scripts": ["server22 = server22.server22:main"]},
|
|
)
|
|
|
|
# FOR WHEEL INSTALATION (FOR UPLOAD TO PYPY)
|
|
# $ python setup.py bdist_wheel
|
|
# LOCAL INSTALLATION (-e for continual developement, it's just link)
|
|
# $ pip install -e .
|