mirror of
https://github.com/adulau/DomainClassifier.git
synced 2024-11-07 11:56:25 +00:00
version 0.3
This commit is contained in:
parent
90fc808eec
commit
42809b5dbf
1 changed files with 10 additions and 10 deletions
20
setup.py
20
setup.py
|
@ -1,13 +1,13 @@
|
||||||
from setuptools import setup, find_packages
|
from setuptools import setup, find_packages
|
||||||
setup(
|
setup(
|
||||||
name = "DomainClassifier",
|
name="DomainClassifier",
|
||||||
version = "0.2",
|
version="0.3",
|
||||||
packages = find_packages(),
|
packages=find_packages(),
|
||||||
install_requires = ['dnspython', 'IPy'],
|
install_requires=['dnspython', 'IPy'],
|
||||||
author = "Alexandre Dulaunoy",
|
author="Alexandre Dulaunoy",
|
||||||
author_email = "a@foo.be",
|
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.",
|
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",
|
license="AGPL",
|
||||||
keywords = "internet mining domain resolver geolocalisation",
|
keywords="internet mining domain resolver geolocalisation",
|
||||||
url = "http://github.com/adulau/DomainClassifier"
|
url="http://github.com/adulau/DomainClassifier"
|
||||||
)
|
)
|
||||||
|
|
Loading…
Reference in a new issue