DomainClassifier/setup.py

20 lines
813 B
Python
Raw Permalink Normal View History

2014-08-18 19:56:11 +00:00
from setuptools import setup, find_packages
from pathlib import Path
this_directory = Path(__file__).parent
long_description = (this_directory / "README.md").read_text()
2014-08-18 19:56:11 +00:00
setup(
2014-08-31 12:52:02 +00:00
name="DomainClassifier",
2024-01-29 15:23:52 +00:00
version="1.4",
2014-08-31 12:52:02 +00:00
packages=find_packages(),
2019-02-17 09:25:42 +00:00
install_requires=['dnspython', 'IPy', 'pybgpranking'],
2014-08-31 12:52:02 +00:00
author="Alexandre Dulaunoy",
author_email="a@foo.be",
2019-02-17 09:25:42 +00:00
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',
2014-08-31 12:52:02 +00:00
license="AGPL",
keywords="internet mining domain resolver geolocalisation",
url="http://github.com/adulau/DomainClassifier"
2014-08-18 19:56:11 +00:00
)