forked from BrandwatchLtd/api_sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
40 lines (34 loc) · 1.43 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
38
39
40
from setuptools import setup, find_packages
requirements = ["requests>=2.22.0"]
setup_requirements = ["pytest-runner", "setuptools>=38.6.0", "wheel>=0.31.0"]
test_requirements = ["pytest", "responses"]
with open("README.md") as infile:
long_description = infile.read()
setup(
name="bwapi",
version="4.0.2",
description="A software development kit for the Brandwatch API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BrandwatchLtd/api_sdk",
author="Amy Barker, Jamie Lebovics, Paul Siegel and Jessica Bowden",
license="License :: OSI Approved :: MIT License",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.5",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
],
packages=find_packages(include=["bwapi"]),
entry_points={"console_scripts": ["bwapi-authenticate = bwapi.authenticate:main"]},
install_requires=requirements,
tests_require=test_requirements,
setup_requires=setup_requirements,
python_requires=">=3.5",
test_suite="tests",
)