-
Notifications
You must be signed in to change notification settings - Fork 80
/
setup.py
36 lines (33 loc) · 1.3 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
from setuptools import setup
with open("README.md", "r") as fh:
long_description = fh.read()
setup(
name="python-edgar",
version="3.0.2",
description="Download the SEC fillings index from EDGAR since 1993",
long_description=long_description,
long_description_content_type="text/markdown",
author="Edouard Swiac",
author_email="[email protected]",
url="https://github.com/edouardswiac/python-edgar",
packages=["edgar"],
scripts=["run.py"],
license="MIT",
keywords="edgar sec filings 10k 10q 13d 8k",
classifiers=[
"Development Status :: 5 - Production/Stable",
"License :: OSI Approved :: MIT License",
"Intended Audience :: Developers",
"Intended Audience :: Information Technology",
"Intended Audience :: Financial and Insurance Industry",
"Operating System :: OS Independent",
"Programming Language :: Python :: 3",
"Topic :: Office/Business :: Financial",
"Topic :: Office/Business :: Financial :: Investment",
],
project_urls={
"Bug Tracker": "https://github.com/edouardswiac/python-edgar/issues",
"Documentation": "https://github.com/edouardswiac/python-edgar/blob/master/README.md",
"Source Code": "https://github.com/edouardswiac/python-edgar/",
},
)