Skip to content

Commit ad5e258

Browse files
Use README as long description in setup.py
1 parent 0d64604 commit ad5e258

File tree

1 file changed

+2
-6
lines changed

1 file changed

+2
-6
lines changed

setup.py

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,8 @@
22

33
from ipregistry import __version__
44

5-
long_description = """
6-
The official Python library for Ipregistry.
7-
8-
Ipregistry is a non-intrusive IP geolocation and threat data lookup solution that retrieves geolocation but also
9-
security information with no explicit permission required from users. All you need is your client's IP address.
10-
"""
5+
with open("README.md", "r") as fh:
6+
long_description = fh.read()
117

128
setuptools.setup(
139
name="ipregistry",

0 commit comments

Comments
 (0)