Initial commit
parents
No related branches found
No related tags found
Showing
- .gitignore 160 additions, 0 deletions.gitignore
- .pre-commit-config.yaml 5 additions, 0 deletions.pre-commit-config.yaml
- LICENSE 674 additions, 0 deletionsLICENSE
- README.md 172 additions, 0 deletionsREADME.md
- pyproject.toml 34 additions, 0 deletionspyproject.toml
- requirements.txt 9 additions, 0 deletionsrequirements.txt
- tests/test_say_hello.py 7 additions, 0 deletionstests/test_say_hello.py
- your_project_name/main.py 26 additions, 0 deletionsyour_project_name/main.py
- your_project_name/module1/__init__.py 0 additions, 0 deletionsyour_project_name/module1/__init__.py
- your_project_name/module1/funct_another_file.py 10 additions, 0 deletionsyour_project_name/module1/funct_another_file.py
- your_project_name/module1/funct_say_hello.py 20 additions, 0 deletionsyour_project_name/module1/funct_say_hello.py
.gitignore
0 → 100644
.pre-commit-config.yaml
0 → 100644
LICENSE
0 → 100644
README.md
0 → 100644
pyproject.toml
0 → 100644
requirements.txt
0 → 100644
# this is where you put all the third-party libraries you want to install | |||
# e.g. | |||
# numpy == 1.18.1 | |||
# dependencies are installed using the command: pip install -r requirements.txt | |||
# recommended libraries | |||
pre-commit==3.4.0 | |||
pytest==7.4.2 | |||
\ No newline at end of file |
tests/test_say_hello.py
0 → 100644
your_project_name/main.py
0 → 100644
your_project_name/module1/__init__.py
0 → 100644
your_project_name/module1/funct_say_hello.py
0 → 100644
Please register or sign in to comment