mirror of
https://github.com/adulau/DomainClassifier.git
synced 2024-11-22 18:07:07 +00:00
Setup script for DomainClassifier
This commit is contained in:
parent
ef75b716bf
commit
94482dcfbf
1 changed files with 13 additions and 0 deletions
13
setup.py
Normal file
13
setup.py
Normal file
|
@ -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"
|
||||||
|
)
|
Loading…
Reference in a new issue