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
executable file
·28 lines (24 loc) · 742 Bytes
/
setup.py
File metadata and controls
executable file
·28 lines (24 loc) · 742 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
27
28
#!/usr/bin/env python
# -*- 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'],
package_data={"whois": ["tlds/*", "nics/*"]},
)