forked from jadchaar/sec-edgar-downloader
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsetup.py
47 lines (44 loc) · 1.8 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
from setuptools import setup
with open("README.rst", encoding="utf-8") as f:
readme = f.read()
about = {}
with open("sec_edgar_downloader/_version.py", encoding="utf-8") as f:
exec(f.read(), about)
setup(
name="sec-edgar-downloader",
version=about["__version__"],
license="MIT",
author="Jad Chaar",
author_email="[email protected]",
description="Download SEC filings from the EDGAR database using Python.",
long_description=readme,
long_description_content_type="text/x-rst",
url="https://github.com/jadchaar/sec-edgar-downloader",
packages=["sec_edgar_downloader"],
zip_safe=False,
install_requires=["lxml>=4.3.4", "requests"],
python_requires=">=3.6",
classifiers=[
"Development Status :: 5 - Production/Stable",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"Natural Language :: English",
"Topic :: Software Development :: Libraries :: Python Modules",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
"License :: OSI Approved :: MIT License",
"Programming Language :: Python :: 3",
"Programming Language :: Python :: 3.6",
"Programming Language :: Python :: 3.7",
"Programming Language :: Python :: 3.8",
"Programming Language :: Python :: 3 :: Only",
"Operating System :: OS Independent",
],
keywords="sec edgar filing financial finance sec.gov",
project_urls={
"Bug Reports": "https://github.com/jadchaar/sec-edgar-downloader/issues",
"Repository": "https://github.com/jadchaar/sec-edgar-downloader",
"Documentation": "https://sec-edgar-downloader.readthedocs.io",
},
)