Skip to content

Added stub file for autocompletion and type checking #36

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 2 additions & 4 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,8 @@ __pycache__/

# C extensions
*.so
*.c
*.h

# Distribution / packaging
.Python
Expand Down Expand Up @@ -89,7 +91,3 @@ ENV/

# Rope project settings
.ropeproject

# Pyenet specific files
enet.c
enet/
3 changes: 3 additions & 0 deletions .gitmodules
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[submodule "enet"]
path = enet
url = https://github.com/lsalzman/enet
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,19 +17,17 @@ obviously, Python.

## Installation

The first step is to download the enet sources from http://enet.bespin.org and
extract it to the enet/ directory in pyenet's source directory. You could also
check out the enet source code from their CVS repository.

This version of pyenet requires enet 1.3.

Next step is to run the setup.py build:
Just run
```
$ python setup.py build
pip install enet-py
```
Once that is complete, install the new pyenet module:

## Building

Obviously
```
$ python setup.py install
python setup.py build
python setup.py install
```

## Usage
Expand Down
1 change: 1 addition & 0 deletions enet
Submodule enet added at 1e80a7
Loading