-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
29 lines (28 loc) · 854 Bytes
/
setup.py
File metadata and controls
29 lines (28 loc) · 854 Bytes
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
from setuptools import setup, find_packages
setup(
name = 'tripmonitor-client',
version = '0.1.0-dev',
author = 'PlannerStack',
author_email = 'contact@plannerstack.org',
license = 'MIT',
description = 'Client for the trip monitor system',
long_description = open('README.rst').read(),
url = 'http://github.com/plannerstack/tripmonitor-client',
download_url = 'http://github.com/plannerstack/tripmonitor-client/archives/master',
packages = find_packages(),
include_package_data = True,
zip_safe = False,
platforms = ['all'],
entry_points = {
'console_scripts': [
'tripmonitor-client = tripmonitor.client:main',
],
},
install_requires = [
'requests',
'websocket-client',
'pyzmq',
'simplejson',
'python-dateutil',
],
)