forked from calcbench/python_api_client
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathsetup.py
More file actions
40 lines (35 loc) · 1.02 KB
/
setup.py
File metadata and controls
40 lines (35 loc) · 1.02 KB
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
"""
Created on Mar 18, 2015
@author: Andrew Kittredge
@copyright: Calcbench, Inc.
@contact: andrew@calcbench.com
"""
from setuptools import setup
with open("README.md") as f:
long_description = f.read()
from calcbench import __version__
setup(
name="calcbench_api_client",
version=__version__,
description="Client for Calcbench data.",
author="Andrew Kittredge",
author_email="andrew@calcbench.com",
license="Apache2",
keywords="finance accounting SEC 10-(K|Q)",
install_requires=[
"requests",
"typing_extensions; python_version <= '3.7'",
"dataclasses; python_version < '3.7'",
],
python_requires=">=3.6",
packages=["calcbench"],
extras_require={
"Pandas": ["Pandas"],
"Listener": ["azure-servicebus==7.2.0"],
"Backoff": ["backoff"],
"BeautifulSoup": ["beautifulsoup4"],
},
url="https://github.com/calcbench/python_api_client",
long_description=long_description,
long_description_content_type="text/markdown",
)