DomainClassifier/setup.py

14 lines
567 B
Python
Raw Normal View History

2014-08-18 19:56:11 +00:00
from setuptools import setup, find_packages
setup(
2014-08-31 12:52:02 +00:00
name="DomainClassifier",
2017-07-14 06:27:50 +00:00
version="0.6",
2014-08-31 12:52:02 +00:00
packages=find_packages(),
install_requires=['dnspython', 'IPy'],
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 text files following their existence, localization or attributes.",
license="AGPL",
keywords="internet mining domain resolver geolocalisation",
url="http://github.com/adulau/DomainClassifier"
2014-08-18 19:56:11 +00:00
)