forked from xdevplatform/search-tweets-python
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
37 lines (34 loc) · 1.23 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
26
27
28
29
30
31
32
33
34
35
36
37
# -*- coding: utf-8 -*-
# Copyright 2018 Twitter, Inc.
# Licensed under the MIT License
# https://opensource.org/licenses/MIT
import re
from setuptools import setup, find_packages
def parse_version(str_):
"""
Parses the program's version from a python variable declaration.
"""
v = re.findall(r"\d+.\d+.\d+", str_)
if v:
return v[0]
else:
print("cannot parse string {}".format(str_))
raise KeyError
# Our version is stored here.
with open("./searchtweets/_version.py") as f:
_version_line = [line for line in f.readlines()
if line.startswith("VERSION")][0].strip()
VERSION = parse_version(_version_line)
setup(name='searchtweets',
description="Wrapper for Twitter's Premium and Enterprise search APIs",
url='https://github.com/twitterdev/search-tweets-python',
author='Fiona Pigott, Jeff Kolb, Josh Montague, Aaron Gonzales',
long_description=open('README.rst', 'r', encoding="utf-8").read(),
author_email='agonzales@twitter.com',
license='MIT',
version=VERSION,
python_requires='>=3.3',
install_requires=["requests", "tweet_parser", "pyyaml"],
packages=find_packages(),
scripts=["tools/search_tweets.py"],
)