forked from ncliang/zillowpy
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
20 lines (19 loc) · 675 Bytes
/
setup.py
File metadata and controls
20 lines (19 loc) · 675 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
from distutils.core import setup
setup(
name = "zillowpy",
packages = ["zillowpy"],
version = "0.0.1",
description = "A thin Python wrapper around the Zillow REST API",
author = "Nigel Liang",
author_email = "nigel@nigelliang.com",
url = "https://github.com/ncliang/zillowpy",
classifiers = [
"Programming Language :: Python",
"Operating System :: OS Independent",
"Development Status :: 3 - Alpha",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Topic :: Internet :: WWW/HTTP",
"Topic :: Software Development :: Libraries :: Python Modules",
],
)