mirror of
https://github.com/adulau/DomainClassifier.git
synced 2024-11-07 11:56:25 +00:00
13 lines
595 B
Python
13 lines
595 B
Python
from setuptools import setup, find_packages
|
|
setup(
|
|
name = "DomainClassifier",
|
|
version = "0.2",
|
|
packages = find_packages(),
|
|
install_requires = ['dnspython', 'IPy'],
|
|
author = "Alexandre Dulaunoy",
|
|
author_email = "a@foo.be",
|
|
description = " DomainClassifier is a simple Python library to extract and classify Internet domains/hostnames/IP addresses from raw text files following their existence, localization or attributes.",
|
|
license = "AGPL",
|
|
keywords = "internet mining domain resolver geolocalisation",
|
|
url = "http://github.com/adulau/DomainClassifier"
|
|
)
|