Skip to content

Commit bd52caa

Browse files
committed
feat: refactoring and resetup
1 parent 79a0802 commit bd52caa

File tree

12 files changed

+716
-105
lines changed

12 files changed

+716
-105
lines changed

.gitignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
1+
.pypirc
12
.env
23
__pycache__/
3-
python-starter/__pycache__/
4+
python_nbdev_starter/__pycache__/
45
*.pyc
56
.ipynb_checkpoints/
67
.mypy_cache/

README.md

Lines changed: 15 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# python-starter
1+
# python_nbdev_starter
22

33

44
<!-- WARNING: THIS FILE WAS AUTOGENERATED! DO NOT EDIT! -->
@@ -11,16 +11,16 @@ documentation.
1111
If you are new to using `nbdev` here are some useful pointers to get you
1212
started.
1313

14-
### Install python_starter in Development mode
14+
### Install python_nbdev_starter in Development mode
1515

1616
``` sh
17-
# make sure python_starter package is installed in development mode
17+
# make sure python_nbdev_starter package is installed in development mode
1818
$ pip install -e .
1919

2020
# make changes under nbs/ directory
2121
# ...
2222

23-
# compile to have changes apply to python_starter
23+
# compile to have changes apply to python_nbdev_starter
2424
$ nbdev_prepare
2525
```
2626

@@ -29,32 +29,32 @@ $ nbdev_prepare
2929
### Installation
3030

3131
Install latest from the GitHub
32-
[repository](https://github.com/moneebullah25/python-starter):
32+
[repository](https://github.com/moneebullah25/python_nbdev_starter):
3333

3434
``` sh
35-
$ pip install git+https://github.com/moneebullah25/python-starter.git
35+
$ pip install git+https://github.com/moneebullah25/python_nbdev_starter.git
3636
```
3737

38-
or from [conda](https://anaconda.org/moneebullah25/python-starter)
38+
or from [conda](https://anaconda.org/moneebullah25/python_nbdev_starter)
3939

4040
``` sh
41-
$ conda install -c moneebullah25 python_starter
41+
$ conda install -c moneebullah25 python_nbdev_starter
4242
```
4343

44-
or from [pypi](https://pypi.org/project/python-starter/)
44+
or from [pypi](https://pypi.org/project/python_nbdev_starter/)
4545

4646
``` sh
47-
$ pip install python_starter
47+
$ pip install python_nbdev_starter
4848
```
4949

5050
### Documentation
5151

5252
Documentation can be found hosted on this GitHub
53-
[repository](https://github.com/moneebullah25/python-starter)’s
54-
[pages](https://moneebullah25.github.io/python-starter/). Additionally
55-
you can find package manager specific guidelines on
56-
[conda](https://anaconda.org/moneebullah25/python-starter) and
57-
[pypi](https://pypi.org/project/python-starter/) respectively.
53+
[repository](https://github.com/moneebullah25/python_nbdev_starter)’s
54+
[pages](https://moneebullah25.github.io/python_nbdev_starter/).
55+
Additionally you can find package manager specific guidelines on
56+
[conda](https://anaconda.org/moneebullah25/python_nbdev_starter) and
57+
[pypi](https://pypi.org/project/python_nbdev_starter/) respectively.
5858

5959
## How to use
6060

nbs/index.ipynb

Lines changed: 16 additions & 16 deletions
Original file line numberDiff line numberDiff line change
@@ -7,14 +7,14 @@
77
"outputs": [],
88
"source": [
99
"#| hide\n",
10-
"from python_starter.core import *"
10+
"from python_nbdev_starter.core import *"
1111
]
1212
},
1313
{
1414
"cell_type": "markdown",
1515
"metadata": {},
1616
"source": [
17-
"# python-starter\n",
17+
"# python_nbdev_starter\n",
1818
"\n",
1919
"> A template project to get started with production ready python projects"
2020
]
@@ -44,21 +44,21 @@
4444
"cell_type": "markdown",
4545
"metadata": {},
4646
"source": [
47-
"### Install python_starter in Development mode"
47+
"### Install python_nbdev_starter in Development mode"
4848
]
4949
},
5050
{
5151
"cell_type": "markdown",
5252
"metadata": {},
5353
"source": [
5454
"```sh\n",
55-
"# make sure python_starter package is installed in development mode\n",
55+
"# make sure python_nbdev_starter package is installed in development mode\n",
5656
"$ pip install -e .\n",
5757
"\n",
5858
"# make changes under nbs/ directory\n",
5959
"# ...\n",
6060
"\n",
61-
"# compile to have changes apply to python_starter\n",
61+
"# compile to have changes apply to python_nbdev_starter\n",
6262
"$ nbdev_prepare\n",
6363
"```"
6464
]
@@ -84,27 +84,27 @@
8484
"Install latest from the GitHub [repository][repo]:\n",
8585
"\n",
8686
"```sh\n",
87-
"$ pip install git+https://github.com/moneebullah25/python-starter.git\n",
87+
"$ pip install git+https://github.com/moneebullah25/python_nbdev_starter.git\n",
8888
"```\n",
8989
"\n",
9090
"or from [conda][conda]\n",
9191
"\n",
9292
"```sh\n",
93-
"$ conda install -c moneebullah25 python_starter\n",
93+
"$ conda install -c moneebullah25 python_nbdev_starter\n",
9494
"```\n",
9595
"\n",
9696
"or from [pypi][pypi]\n",
9797
"\n",
9898
"\n",
9999
"```sh\n",
100-
"$ pip install python_starter\n",
100+
"$ pip install python_nbdev_starter\n",
101101
"```\n",
102102
"\n",
103103
"\n",
104-
"[repo]: https://github.com/moneebullah25/python-starter\n",
105-
"[docs]: https://moneebullah25.github.io/python-starter/\n",
106-
"[pypi]: https://pypi.org/project/python-starter/\n",
107-
"[conda]: https://anaconda.org/moneebullah25/python-starter"
104+
"[repo]: https://github.com/moneebullah25/python_nbdev_starter\n",
105+
"[docs]: https://moneebullah25.github.io/python_nbdev_starter/\n",
106+
"[pypi]: https://pypi.org/project/python_nbdev_starter/\n",
107+
"[conda]: https://anaconda.org/moneebullah25/python_nbdev_starter"
108108
]
109109
},
110110
{
@@ -120,10 +120,10 @@
120120
"source": [
121121
"Documentation can be found hosted on this GitHub [repository][repo]'s [pages][docs]. Additionally you can find package manager specific guidelines on [conda][conda] and [pypi][pypi] respectively.\n",
122122
"\n",
123-
"[repo]: https://github.com/moneebullah25/python-starter\n",
124-
"[docs]: https://moneebullah25.github.io/python-starter/\n",
125-
"[pypi]: https://pypi.org/project/python-starter/\n",
126-
"[conda]: https://anaconda.org/moneebullah25/python-starter"
123+
"[repo]: https://github.com/moneebullah25/python_nbdev_starter\n",
124+
"[docs]: https://moneebullah25.github.io/python_nbdev_starter/\n",
125+
"[pypi]: https://pypi.org/project/python_nbdev_starter/\n",
126+
"[conda]: https://anaconda.org/moneebullah25/python_nbdev_starter"
127127
]
128128
},
129129
{

nbs/nbdev.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,8 @@ project:
22
output-dir: _docs
33

44
website:
5-
title: "python-starter"
6-
site-url: "https://moneebullah25.github.io/python-starter"
5+
title: "python_nbdev_starter"
6+
site-url: "https://moneebullah25.github.io/python_nbdev_starter"
77
description: "A template project to get started with production ready python projects"
88
repo-branch: main
9-
repo-url: "https://github.com/moneebullah25/python-starter"
9+
repo-url: "https://github.com/moneebullah25/python_nbdev_starter"

0 commit comments

Comments
 (0)