-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
25 lines (23 loc) · 1.02 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
"""
This module contains the setup.py for running the Collidium tool
"""
from setuptools import setup, find_packages
PACKAGES = find_packages()
opts = dict(name='Collidium',
maintainer='Alyssa Goodrich, Tejas Hosangadi, Ian Kirkman, Dan White',
maintainer_email='[email protected]',
description='Seattle Construction and Traffic Accident Visualization Tool',
long_description=("""Collidium is a tool that allows users to visualize and
understand the impact of construction on the occurence of traffic accidents
in the City of Seattle. It's structered as a Jupyter notebook with
interactive controls"""),
url='https://github.com/tejasmhos/seattlecollision',
license='MIT',
author='Collidium',
author_email='[email protected]',
version='0.1',
packages=PACKAGES,
package_data={'seattlecollision': ['data/*', 'tests/*']},
)
if __name__ == '__main__':
setup(**opts)