-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathsetup.py
More file actions
23 lines (20 loc) · 807 Bytes
/
setup.py
File metadata and controls
23 lines (20 loc) · 807 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup
long_description = """
The official Django 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_django",
version="2.3.0",
description="Official Django library for IPinfo",
long_description=long_description,
url="https://github.com/ipinfo/django",
author="IPinfo",
author_email="[email protected]",
license="Apache License 2.0",
packages=["ipinfo_django", "ipinfo_django.ip_selector"],
install_requires=["django", "ipinfo>=5.4.0"],
zip_safe=False,
)