Skip to content

Commit

Permalink
add moduls to init
Browse files Browse the repository at this point in the history
  • Loading branch information
yuval6957 committed Apr 14, 2023
1 parent 411424c commit 742af8b
Show file tree
Hide file tree
Showing 5 changed files with 29 additions and 22 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -149,3 +149,4 @@ checklink/cookies.txt

# Quarto
.quarto
token
3 changes: 3 additions & 0 deletions .pypirc
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
[pypi]
username = yuval6957
password = Ceragon2018!
8 changes: 8 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Release notes

<!-- do not remove -->

## 0.0.1



4 changes: 3 additions & 1 deletion reinautils/__init__.py
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
__version__ = "0.0.1"
__version__ = "0.0.2"
from .parameters import Parameters
from .torchutils import device_by_name, DatasetCat
35 changes: 14 additions & 21 deletions settings.ini
Original file line number Diff line number Diff line change
@@ -1,43 +1,36 @@
[DEFAULT]
# All sections below are required unless otherwise specified.
# See https://github.com/fastai/nbdev/blob/master/settings.ini for examples.

### Python library ###
repo = reinautils
lib_name = %(repo)s
version = 0.0.1
lib_name = reinautils
version = 0.0.2
min_python = 3.7
license = apache2
black_formatting = False

### nbdev ###
doc_path = _docs
lib_path = reinautils
nbs_path = nbs
recursive = True
tst_flags = notest
put_version_in_init = True

### Docs ###
branch = main
custom_sidebar = False
doc_host = https://%(user)s.github.io
doc_baseurl = /%(repo)s
git_url = https://github.com/%(user)s/%(repo)s
title = %(lib_name)s

### PyPI ###
doc_host = https://yuval6957.github.io
doc_baseurl = /reinautils
git_url = https://github.com/yuval6957/reinautils
title = reinautils
audience = Developers
author = Yuval Reina
author_email = yuval.reina@gmail.com
copyright = 2023 onwards, %(author)s
copyright = 2023 onwards, Yuval Reina
description = General utilities
keywords = nbdev jupyter notebook python
language = English
status = 3
user = yuval6957

### Optional ###
requirements = torch
# dev_requirements = torch
# console_scripts =
readme_nb = index.ipynb
allowed_metadata_keys =
allowed_cell_metadata_keys =
jupyter_hooks = True
clean_ids = True
clear_all = False

0 comments on commit 742af8b

Please sign in to comment.