From 94482dcfbfcf0923c59efa5aa2d5b0d024049ecd Mon Sep 17 00:00:00 2001 From: Alexandre Dulaunoy Date: Mon, 18 Aug 2014 21:56:11 +0200 Subject: [PATCH] Setup script for DomainClassifier --- setup.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 setup.py diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..93248cd --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +from setuptools import setup, find_packages +setup( + name = "DomainClassifier", + version = "0.1", + 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" +)