forked from razorhash/pyfmpcloud
-
Notifications
You must be signed in to change notification settings - Fork 0
/
setup.py
29 lines (27 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
import setuptools
with open("README.md", "r") as fh:
long_description = fh.read()
setuptools.setup(
name="pyfmpcloud",
version="1.1.6",
author="razorhash",
author_email="[email protected]",
license="MIT",
description="A python-based wrapper for the Financial Models Prep pro API (fmpcloud.io) for financial data of public companies",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/razorhash/pyfmpcloud/",
download_url = "https://github.com/razorhash/pyfmpcloud/archive/v1.1.6.tar.gz",
packages=setuptools.find_packages(),
# package_data={'':['config.ini']},
keywords=["Financial Models Prep", "python", "wrapper", "API", "fmpcloud.io", "fmpcloud"],
classifiers=[
"Development Status :: 5 - Production/Stable",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
"Intended Audience :: Financial and Insurance Industry",
],
include_package_data = True,
python_requires='>=3.6',
)