Skip to content

Commit d28bbbc

Browse files
Update Documentation
Done with Fundamental API
1 parent 2a962fd commit d28bbbc

File tree

64 files changed

+23
-12
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

64 files changed

+23
-12
lines changed

src/pyproject.toml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -4,23 +4,26 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "py_intelligent_stock_market_api_YOUR_mobius-crypt"
7-
version = "0.0.3"
7+
version = "0.0.6"
88
authors = [
9-
{ name="AJ Ndou", email="justice@eod-stock-api.site" },
9+
{ name="MJ API Development", email="support@eod-stock-api.site" },
1010
]
1111
description="An Intelligent EOD Stock Market, Financial News & Financial Social Media Trends API"
1212
readme = "README.md"
1313
requires-python = ">=3.7"
1414
classifiers = [
15-
"Programming Language :: Python :: 3",
15+
"Programming Language :: Python :: >= 3.7",
1616
"License :: OSI Approved :: MIT License",
1717
"Operating System :: OS Independent",
1818
]
1919

2020
[project.urls]
21-
"Homepage" = "https://eod-stock-api.site"
22-
"Bug Tracker" = "https://github.com/MJ-API-Development/stock-api-pythonsdk/issues"
23-
"Gateway" = "https://gateway.eod-stock-api.site"
21+
'Intelligent Stock Market API'= 'https://eod-stock-api.site'
22+
'Subscribe API Keys'= 'https://eod-stock-api.site/login#signup'
23+
'API Gateway'= 'https://gateway.eod-stock-api.site'
24+
'Documentation' = 'https://github.com/MJ-API-Development/stock-api-pythonsdk'
25+
'Source'= 'https://github.com/MJ-API-Development/stock-api-pythonsdk'
26+
'Bug Tracker'= 'https://github.com/MJ-API-Development/stock-api-pythonsdk/issues'
2427

2528
[project.dependencies]
2629
certifi="14.05.14"

src/setup.py

Lines changed: 12 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
from setuptools import setup, find_packages # noqa: H301
1515

1616
NAME = "Intelligent-Stock-Market-API"
17-
VERSION = "0.0.3"
17+
VERSION = "0.0.6"
1818
# To install the library, run the following
1919
#
2020
# python setup.py install
@@ -23,19 +23,29 @@
2323
# http://pypi.python.org/pypi/setuptools
2424

2525
REQUIRES = ["urllib3 >= 1.15", "six >= 1.10", "certifi", "python-dateutil"]
26-
26+
PYTHON_REQUIRES = '>=3.7'
2727
setup(
2828
name=NAME,
2929
version=VERSION,
3030
description="An Intelligent EOD Stock Market, Financial News & Financial Social Media Trends API",
3131
author="MJ API Development",
3232
author_email="support@eod-stock-api.site",
3333
url="https://eod-stock-api.site",
34+
project_urls={
35+
'Documentation': 'https://github.com/MJ-API-Development/stock-api-pythonsdk',
36+
'Source': 'https://github.com/MJ-API-Development/stock-api-pythonsdk',
37+
'Tracker': 'https://github.com/MJ-API-Development/stock-api-pythonsdk/issues',
38+
'Subscribe - API Keys': 'https://eod-stock-api.site/login#signup',
39+
'Intelligent Stock Market API': 'https://eod-stock-api.site',
40+
'API Gateway': 'https://gateway.eod-stock-api.site'
41+
},
3442
keywords=["OpenAPI", "Intelligent EOD Stock Market API", "EOD STOCK API", "Financial News API", "Financial Social Media Trends"],
3543
install_requires=REQUIRES,
44+
python_requires=PYTHON_REQUIRES,
3645
packages=find_packages(exclude=["test", "tests"]),
3746
include_package_data=True,
3847
license="Apache 2.0",
48+
3949
long_description="""
4050
The Intelligent EOD Stocks API is an end-of-day stock API that provides worldwide stock information.
4151
This API is intended for use by web application developers and service providers who need up-to-date and always

src/test.py

Lines changed: 0 additions & 2 deletions
This file was deleted.
File renamed without changes.

0 commit comments

Comments
 (0)