generated from jolt-org/project-template
-
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
build: min py 3.9 and tooling update.
- Loading branch information
1 parent
bd867b8
commit 1f2852a
Showing
16 changed files
with
639 additions
and
497 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -23,6 +23,7 @@ target/ | |
*.iml | ||
.DS_Store | ||
.coverage | ||
.dmypy.json | ||
.python-version | ||
.ruff_cache | ||
/docs/_build/ | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,29 +13,15 @@ | |
|
||
## About | ||
|
||
This project is a template repository for [Jolt][jolt-org] projects. It is designed to be a starting point for | ||
any project that is a part of the Jolt organization. | ||
`type-lens` is a library that allows for utilizing Python types at runtime. | ||
|
||
## Usage | ||
|
||
- [Install copier](https://copier.readthedocs.io/en/stable/#installation) | ||
- `$ copier copy gh:jolt-org/project-template $new-project-name` | ||
- Answer questions. | ||
|
||
## New project checklist | ||
|
||
- [ ] Create the https://github.com/jolt-org/type-lens repository. | ||
- [ ] If using docs: Create the https://github.com/jolt-org/type-lens-docs-preview repository. | ||
- [ ] If not using docs: remove `.github/workflows/docs-preview.yaml`. | ||
- [ ] Update the [README.md](README.md) file with the project-specific information. | ||
- [ ] Initialize git repository: `$ git init` | ||
- [ ] Stage the files: `$ git add ."` | ||
- [ ] Install pre-commit hooks: `$ pre-commit install` | ||
- [ ] Run pre-commit hooks: `$ pre-commit run --all-files` | ||
- [ ] Stage any files that were modified by the pre-commit hooks: `$ git add .` | ||
- [ ] Commit the changes: `$ git commit -m "Initial commit"` | ||
- [ ] Add the remote: `$ git remote add origin [email protected]:jolt-org/type-lens.git` | ||
- [ ] Push the changes: `$ git push -u origin main` | ||
- Install `type-lens` with `pip` or check out [our installation guide][install-guide] | ||
|
||
```shell | ||
pip install type-lens | ||
``` | ||
|
||
## Contributing | ||
|
||
|
Oops, something went wrong.