initial commit
This commit is contained in:
19
setup.py
Executable file
19
setup.py
Executable 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 .
|
||||
Reference in New Issue
Block a user