chg: [release] add the complete README.md for PyPI

This commit is contained in:
Alexandre Dulaunoy 2024-01-10 16:49:15 +01:00
parent caed4bfddc
commit 6c9d8b5350
Signed by: adulau
GPG key ID: 09E2CD4944E6CBCD

View file

@ -1,12 +1,18 @@
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
setup(
name="DomainClassifier",
version="1.1",
version="1.3",
packages=find_packages(),
install_requires=['dnspython', 'IPy', 'pybgpranking'],
author="Alexandre Dulaunoy",
author_email="a@foo.be",
description="DomainClassifier is a Python library to extract and classify Internet domains/hostnames/IP addresses from raw unstructured text files following their existence, localization or attributes.",
long_description=long_description,
long_description_content_type='text/markdown',
license="AGPL",
keywords="internet mining domain resolver geolocalisation",
url="http://github.com/adulau/DomainClassifier"