-
Notifications
You must be signed in to change notification settings - Fork 23
/
setup.py
41 lines (35 loc) · 1.53 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
41
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="bcr-api",
version="1.5.1",
description="A client library for the Brandwatch Consumer Research API",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/BrandwatchLtd/bcr-api",
author="Paul Siegel, Matthew Franglen, Colin Sullivan, Hamish Morgan and Peter Fairfax",
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(where="src", include=["bcr_api"]),
package_dir={"": "src"},
entry_points={"console_scripts": ["bcr-authenticate = bcr_api.authenticate:main"]},
install_requires=requirements,
tests_require=test_requirements,
setup_requires=setup_requirements,
python_requires=">=3.5",
test_suite="tests",
)