-
Notifications
You must be signed in to change notification settings - Fork 3
/
setup.py
33 lines (30 loc) · 1018 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
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
tests_require = [
"vcrpy>=1.10.3",
]
setup(
name="osometweet",
version="0.4",
description="OSoMe Twitter library for academic researchers",
long_description=long_description,
long_description_content_type="text/markdown",
license="MIT",
author="Matthew DeVerna, Christopher Torres-Lugo, Kaicheng Yang",
url="https://github.com/truthy/osometweet",
project_urls={
"Documentation": "https://github.com/truthy/osometweet",
"Issue Tracker": "https://github.com/truthy/osometweet/issues",
"Source Code": "https://github.com/truthy/osometweet",
},
download_url="https://pypi.org/project/osometweet/",
packages=["osometweet"],
install_requires=[
"requests>=2.24.0",
"requests_oauthlib>=1.3.0"
],
tests_require=tests_require,
python_requires=">=3.5",
)