Skip to content

Commit 5f5a463

Browse files
authored
Create setup.py
1 parent 2461362 commit 5f5a463

File tree

1 file changed

+19
-0
lines changed

1 file changed

+19
-0
lines changed

setup.py

Lines changed: 19 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
2+
from setuptools import setup
3+
4+
setup(
5+
name = 'ipapi',
6+
packages = ['ipapi'],
7+
version = '0.4.2',
8+
description = 'Python bindings for ipapi (IP address geolocation API - https://ipapi.com)',
9+
author = 'ipapi',
10+
license="MIT License",
11+
author_email = '[email protected]',
12+
url = 'https://github.com/ipapi-co/ipapi-python',
13+
download_url = 'https://github.com/ipapi-co/ipapi-python/archive/0.4.2.tar.gz',
14+
keywords = ['geolocation', 'location', 'ipapi', 'ipapi.co', 'ip address to location', 'ipaddress', 'ipv4', 'ipv6', 'ip address', 'ip checker', 'ip lookup'],
15+
classifiers = [],
16+
install_requires = [
17+
'requests[security]',
18+
],
19+
)

0 commit comments

Comments
 (0)