-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
31 lines (29 loc) · 928 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
29
30
31
import os
from setuptools import setup
import guesswho
def read(fname):
return open(os.path.join(os.path.dirname(__file__), fname)).read()
setup(
name = "GuessWho",
version = guesswho.__version__,
author = "Chris Hayes",
author_email = "[email protected]",
description = "A python wrapper for the unix/linux whois command.",
license="Apache License, Version 2.0",
keywords = "whois",
url = "https://github.com/HayesData/guesswho",
packages=['guesswho'],
long_description=read('README.md'),
classifiers=[
"Development Status :: 3 - Alpha",
"Topic :: Utilities",
"License :: OSI Approved :: Apache Software License",
"Operating System :: MacOS :: MacOS X",
"Operating System :: POSIX",
"Programming Language :: Python :: 2.7",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.1",
"Programming Language :: Python :: 3.2",
"Programming Language :: Python :: 3.3",
],
)