File tree 3 files changed +17
-4
lines changed
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.
16
16
17
17
## Install
18
18
19
+
20
+ Get latest release
21
+
22
+ ``` sh
23
+ pip install mozloc
24
+ ```
25
+
26
+ or for latest development version
19
27
``` sh
20
- python -m pip install -e .
28
+ git clone https://github.com/scivision/mozilla-location-wifi/
29
+ pip install -e mozilla-location-wifi/
21
30
```
22
31
23
32
## Usage
Original file line number Diff line number Diff line change 1
1
[metadata]
2
2
name = mozloc
3
- version = 1.1.0
3
+ version = 1.1.1
4
4
author = Michael Hirsch, Ph.D.
5
5
6
6
url = https://github.com/scivision/mozilla-location-wifi
Original file line number Diff line number Diff line change 1
1
#!/usr/bin/env python
2
- from setuptools import setup
2
+ import site
3
+ import setuptools
3
4
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