-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
35 lines (33 loc) · 809 Bytes
/
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
from setuptools import setup
setup(
name='geotweet',
version='0.2.7',
description='Fetch geographic tweets from Twitter Streaming API',
author='Jeffrey Alan Meyers',
author_email='[email protected]',
url='https://github.com/meyersj/geotweet',
packages=[
'geotweet',
'geotweet.twitter',
'geotweet.geomongo',
'geotweet.mapreduce',
'geotweet.mapreduce.utils'
],
scripts=['bin/geotweet'],
include_package_data=True,
install_requires=[
'setuptools>=7.0',
'argparse',
'boto3',
'mrjob>=0.5.0',
'requests>=2.0',
'python-twitter',
'pymongo',
'Geohash',
'Shapely',
'Rtree',
'pyproj',
'imposm.parser',
'ujson'
]
)