Skip to content

Commit bb84686

Browse files
committed
repo setup
1 parent 6dbc22d commit bb84686

File tree

14 files changed

+4133
-66
lines changed

14 files changed

+4133
-66
lines changed

.github/workflows/full_test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ jobs:
2828
run: |
2929
python -m pip install --upgrade pip
3030
pip install pytest pytest-cov
31-
- name: Install my_library
31+
- name: Install eotorch
3232
run: |
3333
pip install .[test]
3434
- name: Static type check

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
LIB = my_library
1+
LIB = eotorch
22

33
check: lint typecheck test doctest
44

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# my_library: Template Python repository
1+
# eotorch: Template Python repository
22

33
This repository serves as a template for creating a Python library
44

@@ -7,7 +7,7 @@ This repository serves as a template for creating a Python library
77
1. Create a new repository in GitHub with this repo as a starting point
88
![](images/new_repo.png)
99

10-
2. Change all occurences of `my_library` to match the name of your new library
10+
2. Change all occurences of `eotorch` to match the name of your new library
1111

1212
3. Consider if the [license](LICENSE) should be modified.
1313

docs/getting_started.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
## Installation
44

55
```
6-
pip install my_library
6+
pip install eotorch
77
```

docs/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Welcome to my_library
1+
# Welcome to eotorch
22

33
See more in [Getting started](getting_started.md)
44

docs/reference.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
# Reference
22

3-
::: my_library.simulation
3+
::: eotorch.simulation
File renamed without changes.

images/new_repo.png

-18.7 KB
Binary file not shown.

mkdocs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
site_name: my_library
1+
site_name: eotorch
22

33
theme: "material"
44

my_library/simulation.py

Lines changed: 0 additions & 39 deletions
This file was deleted.

0 commit comments

Comments
 (0)