Skip to content

Commit

Permalink
update readme and __init__.py
Browse files Browse the repository at this point in the history
  • Loading branch information
EhsanGharibNezhad committed Nov 28, 2023
1 parent 0e85653 commit d817804
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 9 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<sub><b>Ehsan Gharib-Nezhad</b></sub>
</a><br/>
<a href="https://github.com/EhsanGharibNezhad/TelescopeML/commits?author=EhsanGharibNezhad" title="Code">💻</a>
<a href="#mentoring-EhsanGharibNezhad" title="Mentoring">🧑‍🏫</a>
<a href="#ideas" title="Ideas, Leading ">🤔</a>
<a href="https://pypi.org/project/TelescopeML/" title="Maintenance">🚧</a>
<a href="https://ehsangharibnezhad.github.io/TelescopeML/tutorials.html" title="tutorial">📚</a>
</td>
Expand All @@ -105,14 +105,14 @@ Thanks goes to these wonderful people ([emoji key](https://allcontributors.org/d
<sub><b>Miguel Martinho</b></sub>
</a><br/>
<a href="" title="mentoring-CNNTuning-BOHB" title="Mentoring">🧑‍🏫</a>
<a href="#ideas" title="Ideas & Feedback">🤔</a>
</td>
<td align="center" valign="top" width="20%">
<a href="https://github.com/letgotopal">
<img src="https://avatars.githubusercontent.com/u/89670109?v=4?s=100" width="100px;" alt="Gopal Nookula"/><br />
<sub><b>Gopal Nookula</b></sub>
</a><br/>
<a href="https://ehsangharibnezhad.github.io/TelescopeML/tutorials.html" title="tutorial">📚</a>
<a href="https://ehsangharibnezhad.github.io/TelescopeML/installation.html" title="userTesting">🧑‍🔬</a>
</td>
</tr>
</tbody>
Expand Down
15 changes: 8 additions & 7 deletions TelescopeML/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,14 +7,15 @@

from os.path import dirname, basename, isfile, join
import glob

modules = glob.glob(join(dirname(__file__), "*.py"))

__all__ = [ basename(f)[:-3] for f in modules if isfile(f) and not f.endswith('__init__.py')]

# try:
# from pkg_resources import declare_namespace
# declare_namespace(__name__)
# except ImportError:
# from pkgutil import extend_path
# __path__ = extend_path(__path__, __name__)

__version__ = "0.0.1"
# Read the __version__.py file
with open('__version__.txt', 'r') as f:
ver = f.read()

__version__ = '0.0.3'
print(__version__)

0 comments on commit d817804

Please sign in to comment.