-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 909 Bytes
/
Copy pathsetup.py
File metadata and controls
18 lines (16 loc) · 909 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
PACKAGES = find_packages()
opts = dict(name='HomeIn',
description='Exploration tool for previous house sales and crime rate in King County - a one-stop comp analysis.',
long_description='Interactive multi-layer maps exploring previous house sales and crime rate in King Country '
'Layer 1: Individual selectable markers with desired house prices and specifications '
'Layer 2: Heatmap of crime rates'
'Layer 3: Choropleth map of house prices within each zip code.',
license=open('LICENSE').read(),
author='hanghu, jhp312, YangJiang89, MengyuanZoe',
packages=PACKAGES,
package_data={'HomeIn': ['Data/*.*']},
include_package_data=True
)
if __name__ == '__main__':
setup(**opts)