-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
51 lines (49 loc) · 1.61 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
48
49
50
51
# -*- coding: utf-8 -*-
"""Setup for mls.apiclient package."""
import os
from setuptools import setup, find_packages
setup(
name='mls.apiclient',
version='1.6.dev0',
description="Python client for the RESTful API of the Propertyshelf MLS.",
long_description='\n\n'.join([
open("README.rst").read() + "\n" +
open(os.path.join("docs", "HISTORY.txt")).read(),
open(os.path.join("docs", "INSTALL.txt")).read(),
open(os.path.join("docs", "LICENSE.txt")).read(),
]),
# Get more strings from
# http://pypi.python.org/pypi?:action=list_classifiers
classifiers=[
"Development Status :: 5 - Production/Stable",
"Environment :: Web Environment",
"Intended Audience :: Other Audience",
"License :: OSI Approved :: GNU General Public License (GPL)",
"Natural Language :: English",
"Operating System :: OS Independent",
"Programming Language :: Python",
"Programming Language :: Python :: 2.7",
],
keywords='MLS API client',
author='Propertyshelf, Inc.',
author_email='development@propertyshelf.com',
url='https://github.com/propertyshelf/mls.apiclient',
download_url='http://pypi.python.org/pypi/mls.apiclient',
license='GPL',
packages=find_packages('src', exclude=['ez_setup']),
package_dir={'': 'src'},
namespace_packages=['mls'],
include_package_data=True,
zip_safe=False,
extras_require=dict(
test=[
'responses',
'unittest2',
],
),
install_requires=[
'setuptools',
'requests',
],
entry_points="""""",
)