mirror of
https://github.com/adulau/DomainClassifier.git
synced 2024-11-07 11:56:25 +00:00
chg: [release] add the complete README.md for PyPI
This commit is contained in:
parent
caed4bfddc
commit
6c9d8b5350
1 changed files with 7 additions and 1 deletions
8
setup.py
8
setup.py
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue