-
Notifications
You must be signed in to change notification settings - Fork 110
/
Copy pathsetup.py
26 lines (22 loc) · 868 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
25
26
from setuptools import setup
from ipinfo.version import SDK_VERSION
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=SDK_VERSION,
description="Official Python library for IPInfo",
long_description=long_description,
url="https://github.com/ipinfo/python",
author="IPinfo",
author_email="[email protected]",
license="Apache License 2.0",
packages=["ipinfo", "ipinfo.cache"],
install_requires=["requests", "cachetools", "aiohttp<=4"],
include_package_data=True,
zip_safe=False,
)