-
Notifications
You must be signed in to change notification settings - Fork 13
Expand file tree
/
Copy pathsetup.py
More file actions
32 lines (25 loc) · 863 Bytes
/
Copy pathsetup.py
File metadata and controls
32 lines (25 loc) · 863 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
30
31
32
#!/usr/bin/env python
import os
import sys
if sys.version < '2.7':
print 'Python >= 2.7 required'
sys.exit(1)
from setuptools import setup
long_description = '''
A simple Python package for using Twitter search functionality
that is only available through the Twitter web interface
(such as searching for tweets older than a few weeks).'''.strip()
setup(
name = 'twitterwebsearch',
version='0.2.5',
author = 'Raynor Vliegendhart',
author_email = 'ShinNoNoir@gmail.com',
url = 'https://github.com/ShinNoNoir/twitterwebsearch',
packages=['twitterwebsearch'],
description = "Package for Twitter's web search",
long_description = long_description,
platforms = 'Any',
license = 'MIT (see: LICENSE.txt)',
keywords = 'Twitter, search',
install_requires = open('requirements.txt').readlines(),
)