forked from Finnhub-Stock-API/finnhub-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
26 lines (22 loc) · 679 Bytes
/
setup.py
File metadata and controls
26 lines (22 loc) · 679 Bytes
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
# coding: utf-8
from setuptools import setup, find_packages # noqa: H301
NAME = "finnhub-python"
VERSION = "2.4.18"
REQUIRES = ["requests >= 2.22.0"]
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name=NAME,
version=VERSION,
description="Finnhub API",
author="Finnhub",
author_email="support@finnhub.io",
url="https://finnhub.io/docs/api",
keywords=["finnhub", "Finnhub API", "api"],
install_requires=REQUIRES,
packages=find_packages(exclude=["test", "tests"]),
include_package_data=True,
license="Apache-2.0",
long_description=long_description,
long_description_content_type="text/markdown"
)