-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
34 lines (32 loc) · 1.1 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
from setuptools import setup, find_packages
with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
setup(
name="tweet_suite",
version="1.1.3",
author="Nina Di Cara, Alastair Tanner, Valerio Maggio",
author_email="[email protected]",
description="Collect and save daily Twitter data from Wales using Twitter's Academic API.",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/ninadicara/tweet-suite",
include_package_data=True,
project_urls={"Bug Tracker": "https://github.com/ninadicara/tweet-suite/issues",},
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)",
"Operating System :: OS Independent",
],
scripts=["scripts/collect_tweets"],
packages=find_packages(exclude=[]),
python_requires=">=3.6,<3.10",
install_requires=[
"retry",
"geopandas",
"vaderSentiment",
"schedule",
"pandas",
"shapley",
"requests",
],
)