forked from janlukasschroeder/sec-api-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
6102a8a
commit ad521ff
Showing
6 changed files
with
16 additions
and
4 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,4 +2,6 @@ env | |
dist | ||
build | ||
.idea | ||
.pypirc | ||
.pypirc | ||
sec_api.egg-info | ||
sec_api.egg-info/* |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
name = "sec_api" | ||
from sec_api.index import QueryApi |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Inside of setup.cfg | ||
[metadata] | ||
description-file = README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,17 +5,23 @@ | |
|
||
setup( | ||
name="sec-api", | ||
version="0.0.1", | ||
version="1.0.1", | ||
author="SEC API", | ||
author_email="[email protected]", | ||
description="SEC EDGAR Filings API", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/janlukasschroeder/sec-api-python", | ||
url="https://sec-api.io", | ||
download_url='https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on | ||
packages=find_packages(), | ||
classifiers=[ | ||
'Development Status :: 5 - Production/Stable', | ||
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package | ||
'Topic :: Software Development :: Build Tools', | ||
"Programming Language :: Python :: 3", | ||
"License :: OSI Approved :: MIT License", | ||
"Operating System :: OS Independent", | ||
], | ||
keywords=['SEC EDGAR API', 'SEC Filings API', 'EDGAR API', 'Finance', 'CIK', 'CUSIP'] | ||
|
||
) |