File tree Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Expand file tree Collapse file tree 3 files changed +17
-4
lines changed Original file line number Diff line number Diff line change @@ -16,8 +16,17 @@ Let us know if you're interested.
1616
1717## Install
1818
19+
20+ Get latest release
21+
22+ ``` sh
23+ pip install mozloc
24+ ```
25+
26+ or for latest development version
1927``` sh
20- python -m pip install -e .
28+ git clone https://github.com/scivision/mozilla-location-wifi/
29+ pip install -e mozilla-location-wifi/
2130```
2231
2332## Usage
Original file line number Diff line number Diff line change 11[metadata]
22name = mozloc
3- version = 1.1.0
3+ version = 1.1.1
44author = Michael Hirsch, Ph.D.
55author_email = scivision@users.noreply.github.com
66url = https://github.com/scivision/mozilla-location-wifi
Original file line number Diff line number Diff line change 11#!/usr/bin/env python
2- from setuptools import setup
2+ import site
3+ import setuptools
34
4- setup ()
5+ # PEP517 workaround
6+ site .ENABLE_USER_SITE = True
7+
8+ setuptools .setup ()
You can’t perform that action at this time.
0 commit comments