Skip to content

Commit 94e7990

Browse files
author
Henry
committed
✨ local editable installation
- allow to install package in editable mode
1 parent 8ef2ebf commit 94e7990

File tree

3 files changed

+13
-0
lines changed

3 files changed

+13
-0
lines changed

MANIFEST.in

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
graft src
2+
recursive-exclude __pycache__ *.py[cod]

README.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1 +1,10 @@
11
# Example Python package
2+
3+
## Development environment
4+
5+
Install package so that new code is picked up in a restared python interpreter:
6+
7+
```
8+
pip install -e .
9+
```
10+

setup.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
from setuptools import setup
2+
setup()

0 commit comments

Comments
 (0)