-
Notifications
You must be signed in to change notification settings - Fork 24
/
setup.py
62 lines (60 loc) · 1.97 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
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
from setuptools import setup, find_packages
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="sec-api",
version="1.0.25",
author="SEC API",
author_email="[email protected]",
description="SEC EDGAR Filings API",
long_description=long_description,
long_description_content_type="text/markdown",
packages=find_packages(),
install_requires=[
"requests",
],
classifiers=[
"Development Status :: 5 - Production/Stable",
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
"Operating System :: OS Independent",
"Topic :: Software Development :: Build Tools",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"Topic :: Software Development :: Libraries :: Python Modules",
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Financial and Insurance Industry",
"Intended Audience :: Information Technology",
],
keywords=[
"SEC EDGAR API",
"SEC Filings API",
"SEC Filing Search API",
"SEC Full-Text Search API",
"EDGAR API",
"Finance",
"CIK",
"CUSIP",
"CUSIP to Ticker",
"CUSIP to CIK",
"10-Q",
"10-K",
"8-K",
"S-1",
"424B4",
"XBRL Converter",
"Financial Statements API",
"Insider Trading Data",
"Executive Compensation Data",
"Form D Offerings API",
"Form N-PORT API",
"Form ADV API",
"10-K/10-Q/8-K Section Extractor API",
],
project_urls={
"Bug Reports": "https://github.com/janlukasschroeder/sec-api-python/issues",
"Repository": "https://github.com/janlukasschroeder/sec-api-python",
"Documentation": "https://sec-api.io/docs",
},
)