-
Notifications
You must be signed in to change notification settings - Fork 64
/
setup.py
47 lines (41 loc) · 1.5 KB
/
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
"""
The setup and build script for the python-zillow library.
"""
import os
from setuptools import setup, find_packages
def read(*paths):
"""Build a file path from *paths* and return the contents."""
with open(os.path.join(*paths), 'r') as f:
return f.read()
setup(
name='python-zillow',
version='0.3.0',
author='The Python-Zillow Developers',
author_email='python-zillow@googlegroups.com',
license='Apache License 2.0',
url='https://github.com/seme0021/python-zillow',
download_url='https://github.com/seme0021/python-zillow/tarball/master',
keywords=['zillow', 'api', 'real estate', 'python'],
description='A Python wrapper around the Zillow API',
packages=find_packages(exclude=['tests*']),
install_requires=[
'requests',
'xmltodict',
],
classifiers=[
'Development Status :: 5 - Production/Stable',
'Intended Audience :: Developers',
'License :: OSI Approved :: Apache Software License',
'Operating System :: OS Independent',
'Topic :: Software Development :: Libraries :: Python Modules',
'Topic :: Communications :: Chat',
'Topic :: Internet',
'Programming Language :: Python',
'Programming Language :: Python :: 2',
'Programming Language :: Python :: 2.7',
'Programming Language :: Python :: 3',
'Programming Language :: Python :: 3.4',
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
)