Skip to content

Commit

Permalink
licence and req fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Sampad committed Sep 20, 2023
1 parent fe2d453 commit 0cc7fce
Show file tree
Hide file tree
Showing 13 changed files with 1,061 additions and 18 deletions.
4 changes: 2 additions & 2 deletions Bharat_sm_data/Bharat_sm_data.egg-info/PKG-INFO
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@ Summary: Bharat (India) Stock Market Data Fetch Library for all kind of data, De
Home-page: UNKNOWN
Author: Sampad Hegde
Author-email: me@sampadhegde.in
License: apache-2
License: Apache License 2.0
Platform: UNKNOWN
Classifier: License :: OSI Approved :: Apache2
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3.8
Classifier: Operating System :: OS Independent
Requires-Python: >=3.8
Expand Down
2 changes: 1 addition & 1 deletion Bharat_sm_data/Bharat_sm_data.egg-info/requires.txt
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ pydash>=7.0.6
beautifulsoup4>=4.12.2
numpy>=1.25.2
html5lib>=1.0
lxml>=4.9.0
lxml>=4.9.3

[dev]
twine>=4.0.2
589 changes: 589 additions & 0 deletions build/lib/Fundamentals/MoneyControl.py

Large diffs are not rendered by default.

452 changes: 452 additions & 0 deletions build/lib/Fundamentals/TickerTape.py

Large diffs are not rendered by default.

2 changes: 2 additions & 0 deletions build/lib/Fundamentals/__init__.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
from Fundamentals.MoneyControl import MoneyControl
from Fundamentals.TickerTape import Tickertape
Binary file modified dist/Bharat_sm_data-1.0.0-py3-none-any.whl
Binary file not shown.
Binary file modified dist/Bharat_sm_data-1.0.0.tar.gz
Binary file not shown.
Binary file modified docs/_build/doctrees/environment.pickle
Binary file not shown.
1 change: 0 additions & 1 deletion docs/_build/html/_modules/Derivatives/Sensibull.html
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,6 @@ <h1>Source code for Derivatives.Sensibull</h1><div class="highlight"><pre>
<span class="n">sys</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">append</span><span class="p">(</span>
<span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">abspath</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">abspath</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">join</span><span class="p">(</span><span class="n">os</span><span class="o">.</span><span class="n">path</span><span class="o">.</span><span class="n">abspath</span><span class="p">(</span><span class="vm">__file__</span><span class="p">),</span> <span class="n">os</span><span class="o">.</span><span class="n">pardir</span><span class="p">)),</span> <span class="n">os</span><span class="o">.</span><span class="n">pardir</span><span class="p">)))</span>


<span class="kn">from</span> <span class="nn">Base</span> <span class="kn">import</span> <span class="n">CustomSession</span>


Expand Down
1 change: 1 addition & 0 deletions docs/_build/html/_modules/Fundamentals/MoneyControl.html
Original file line number Diff line number Diff line change
Expand Up @@ -78,6 +78,7 @@ <h1>Source code for Fundamentals.MoneyControl</h1><div class="highlight"><pre>
<span class="kn">import</span> <span class="nn">pandas</span> <span class="k">as</span> <span class="nn">pd</span>
<span class="kn">from</span> <span class="nn">bs4</span> <span class="kn">import</span> <span class="n">BeautifulSoup</span>
<span class="kn">from</span> <span class="nn">pydash.collections</span> <span class="kn">import</span> <span class="n">find</span>

<span class="kn">import</span> <span class="nn">sys</span>
<span class="kn">import</span> <span class="nn">os</span>

Expand Down
1 change: 1 addition & 0 deletions docs/_build/html/_modules/Technical/NSE.html
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@

<h1>Source code for Technical.NSE</h1><div class="highlight"><pre>
<span></span><span class="kn">import</span> <span class="nn">pandas</span> <span class="k">as</span> <span class="nn">pd</span>

<span class="kn">import</span> <span class="nn">sys</span>
<span class="kn">import</span> <span class="nn">os</span>

Expand Down
9 changes: 4 additions & 5 deletions requirements.txt
Original file line number Diff line number Diff line change
@@ -1,8 +1,7 @@
requests>=2.31.0
pandas>=1.3.5
pandas>=2.0.3
pydash>=7.0.6
beautifulsoup4>=4.12.2
numpy>=1.21.6
setuptools>=58.1.0
html5lib>=1.0
lxml>=4.9.0
numpy>=1.25.2
html5lib>=1.1
lxml>=4.9.3
18 changes: 9 additions & 9 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,20 @@
url="",
author="Sampad Hegde",
author_email="me@sampadhegde.in",
license="apache-2",
license="Apache License 2.0",
classifiers=[
"License :: OSI Approved :: Apache2",
"License :: OSI Approved :: Apache Software License",
"Programming Language :: Python :: 3.8",
"Operating System :: OS Independent",
],
install_requires=[
'requests >= 2.31.0',
'pandas >= 2.0.3',
'pydash >= 7.0.6',
'beautifulsoup4 >= 4.12.2',
'numpy >= 1.25.2',
'html5lib >= 1.0',
'lxml >= 4.9.0'
'requests>=2.31.0',
'pandas>=2.0.3',
'pydash>=7.0.6',
'beautifulsoup4>=4.12.2',
'numpy>=1.25.2',
'html5lib>=1.1',
'lxml>=4.9.3'
],
extras_require={
"dev": ["twine>=4.0.2"],
Expand Down

0 comments on commit 0cc7fce

Please sign in to comment.