forked from ipinfo/python
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
24 lines (21 loc) · 817 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
from setuptools import setup
long_description = """
The official Python library for IPinfo.
IPinfo prides itself on being the most reliable, accurate, and in-depth source of IP address data available anywhere.
We process terabytes of data to produce our custom IP geolocation, company, carrier and IP type data sets.
You can visit our developer docs at https://ipinfo.io/developers.
"""
setup(
name="ipinfo",
version="3.0.0",
description="Official Python library for IPInfo",
long_description=long_description,
url="https://github.com/ipinfo/python",
author="IPinfo",
author_email="support@ipinfo.io",
license="Apache License 2.0",
packages=["ipinfo", "ipinfo.cache"],
install_requires=["requests", "cachetools", "six"],
include_package_data=True,
zip_safe=False,
)