-
Notifications
You must be signed in to change notification settings - Fork 247
/
setup.py
23 lines (21 loc) · 863 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
# -*- 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
with open("./searchtweets/_version.py") as f:
VERSION = re.search(r'\d+.\d+.\d+', f.read()).group()
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='[email protected]',
license='MIT',
version=VERSION,
python_requires='>=3.3',
install_requires=["requests", "tweet_parser", "pyyaml"],
packages=find_packages(),
scripts=["tools/search_tweets.py"],
)