Skip to content

Commit 0b8aaee

Browse files
committed
pep517/518
1 parent 1d2c299 commit 0b8aaee

File tree

3 files changed

+17
-4
lines changed

3 files changed

+17
-4
lines changed

README.md

+10-1
Original file line numberDiff line numberDiff 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

setup.cfg

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[metadata]
22
name = mozloc
3-
version = 1.1.0
3+
version = 1.1.1
44
author = Michael Hirsch, Ph.D.
55
author_email = [email protected]
66
url = https://github.com/scivision/mozilla-location-wifi

setup.py

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,8 @@
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()

0 commit comments

Comments
 (0)