Skip to content

Commit

Permalink
chg: [release] add the complete README.md for PyPI
Browse files Browse the repository at this point in the history
  • Loading branch information
adulau committed Jan 10, 2024
1 parent caed4bf commit 6c9d8b5
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
@@ -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"
Expand Down

0 comments on commit 6c9d8b5

Please sign in to comment.