initial commit

This commit is contained in:
2021-07-12 12:51:22 +02:00
parent 5cf99829a5
commit 4ceb5cf78e
7 changed files with 557 additions and 0 deletions

19
setup.py Executable file
View File

@@ -0,0 +1,19 @@
#!/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.',
#py_modules=['debcomm'],
packages=['server22'],
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 .