forked from relip/python-whois
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 673 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 673 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
# -*- coding: utf-8 -*-
from setuptools import setup, find_packages
import sys, os
__version__ = '0.1'
setup(name='whois',
version=__version__,
description="The Whois client, which is developed in Python language, retrieves domain information from the server.",
classifiers=[
"License :: OSI Approved :: MIT License",
"Operating System :: POSIX",
"Environment :: Console",
"Programming Language :: Python",
"Topic :: Internet",
"Topic :: Software Development :: Libraries :: Python Modules",
],
keywords='whois',
author='Larry Kim',
author_email='admin@relip.org',
url='http://github.com/relip/python-whois',
license='MIT',
packages=['whois'],
)