File tree 2 files changed +10
-10
lines changed
2 files changed +10
-10
lines changed Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ A Python Module to wrap the IP address geolocation service from [hostip.info](ht
5
5
6
6
7
7
## Installation
8
- Download the tarball, untar and run ` python setup.py install`
8
+ Install from PyPI using ` pip install pylocation `
9
9
10
10
## Dependencies
11
11
` pylocation ` depends on the excellent [ requests] ( https://github.com/kennethreitz/requests ) library.
Original file line number Diff line number Diff line change 1
1
from distutils .core import setup
2
2
3
- setup (name = 'pylocate ' ,
4
- version = '0.1' ,
5
- description = 'Python Wrapper Library for Geolocating IP Addresses' ,
6
- author = 'Mark Costello' ,
7
-
8
- url = 'https://github.com/mcos/pylocate' ,
9
- license = "MIT License"
10
- # install_requires= ['requests','simplejson']
11
- # packages=['zencoder ']
3
+ setup (name = 'pylocation ' ,
4
+ version = '0.1' ,
5
+ description = 'Python Wrapper Library for Geolocating IP Addresses' ,
6
+ author = 'Mark Costello' ,
7
+ author_email = '[email protected] ' ,
8
+ url = 'https://github.com/mcos/pylocate' ,
9
+ license = "MIT License" ,
10
+ install_requires = ['requests' ],
11
+ packages = [ 'pylocation ' ]
12
12
)
You can’t perform that action at this time.
0 commit comments