Skip to content

Commit ad521ff

Browse files
setup
1 parent 6102a8a commit ad521ff

6 files changed

Lines changed: 16 additions & 4 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,6 @@ env
22
dist
33
build
44
.idea
5-
.pypirc
5+
.pypirc
6+
sec_api.egg-info
7+
sec_api.egg-info/*

sec-api/__init__.py

Lines changed: 0 additions & 1 deletion
This file was deleted.

sec_api/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
name = "sec_api"
2+
from sec_api.index import QueryApi
File renamed without changes.

setup.cfg

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# Inside of setup.cfg
2+
[metadata]
3+
description-file = README.md

setup.py

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,17 +5,23 @@
55

66
setup(
77
name="sec-api",
8-
version="0.0.1",
8+
version="1.0.1",
99
author="SEC API",
1010
author_email="support@sec-api.io",
1111
description="SEC EDGAR Filings API",
1212
long_description=long_description,
1313
long_description_content_type="text/markdown",
14-
url="https://github.com/janlukasschroeder/sec-api-python",
14+
url="https://sec-api.io",
15+
download_url='https://github.com/user/reponame/archive/v_01.tar.gz', # I explain this later on
1516
packages=find_packages(),
1617
classifiers=[
18+
'Development Status :: 5 - Production/Stable',
19+
# Chose either "3 - Alpha", "4 - Beta" or "5 - Production/Stable" as the current state of your package
20+
'Topic :: Software Development :: Build Tools',
1721
"Programming Language :: Python :: 3",
1822
"License :: OSI Approved :: MIT License",
1923
"Operating System :: OS Independent",
2024
],
25+
keywords=['SEC EDGAR API', 'SEC Filings API', 'EDGAR API', 'Finance', 'CIK', 'CUSIP']
26+
2127
)

0 commit comments

Comments
 (0)