-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
28 lines (26 loc) · 821 Bytes
/
setup.py
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
from setuptools import setup, find_packages
import sys, os
version = '0.1.6'
setup(
name='pure-python-whois',
version=version,
description='A transliteration of the Linux whois client into pure Python.',
long_description='',
classifiers=[
'Environment :: Web Environment',
'Intended Audience :: Developers',
'License :: OSI Approved :: MIT License',
'Operating System :: OS Independent',
'Programming Language :: Python',
'Topic :: Internet :: WWW/HTTP'
],
keywords='whois, python',
author='Christian Lerrahn',
author_email='[email protected]',
url='https://github.com/jsfan/pure-python-whois',
license='MIT',
packages=find_packages(),
include_package_data=True,
zip_safe=False,
install_requires=['chardet']
)