Skip to content

Commit

Permalink
setup
Browse files Browse the repository at this point in the history
  • Loading branch information
janlukasschroeder committed Jun 16, 2021
1 parent 6102a8a commit ad521ff
Show file tree
Hide file tree
Showing 6 changed files with 16 additions and 4 deletions.
4 changes: 3 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,4 +2,6 @@ env
dist
build
.idea
.pypirc
.pypirc
sec_api.egg-info
sec_api.egg-info/*
1 change: 0 additions & 1 deletion sec-api/__init__.py

This file was deleted.

2 changes: 2 additions & 0 deletions sec_api/__init__.py
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.
3 changes: 3 additions & 0 deletions setup.cfg
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# Inside of setup.cfg
[metadata]
description-file = README.md
10 changes: 8 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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']

)

0 comments on commit ad521ff

Please sign in to comment.