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 " ,
2021-03-25 15:04:22 +00:00
version = " 1.0 " ,
2014-08-31 12:52:02 +00:00
packages = find_packages ( ) ,
2019-02-17 09:25:42 +00:00
install_requires = [ ' dnspython ' , ' IPy ' , ' pybgpranking ' ] ,
dependency_links = [
' git+https://github.com/D4-project/BGP-Ranking.git/@7e698f87366e6f99b4d0d11852737db28e3ddc62#egg=pybgpranking&subdirectory=client ' ,
] ,
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. " ,
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
)