https://github.com/singularitti/mypkgtemplates.jl
This is the repo for initializing Julia packages
https://github.com/singularitti/mypkgtemplates.jl
julia julia-language templates
Last synced: about 1 year ago
JSON representation
This is the repo for initializing Julia packages
- Host: GitHub
- URL: https://github.com/singularitti/mypkgtemplates.jl
- Owner: singularitti
- License: mit
- Created: 2022-08-19T11:24:35.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2024-01-31T22:19:12.000Z (over 2 years ago)
- Last Synced: 2025-04-15T02:44:35.780Z (about 1 year ago)
- Topics: julia, julia-language, templates
- Language: Julia
- Homepage:
- Size: 150 KB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# {{{PKG}}}
| **Documentation** | [](https://{{{USER}}}.github.io/{{{PKG}}}.jl/stable/) [](https://{{{USER}}}.github.io/{{{PKG}}}.jl/dev/) |
| :---------------: | :------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| **Build Status** | [](https://github.com/{{{USER}}}/{{{PKG}}}.jl/actions/workflows/CI.yml?query=branch%3A{{{branch}}}) [](https://ci.appveyor.com/project/{{{USER}}}/{{{PKG}}}-jl)[](https://cirrus-ci.com/github/{{{USER}}}/{{{PKG}}}.jl) |
| **Coverage** | [](https://github.com/{{{USER}}}/{{{PKG}}}.jl/commits/{{{branch}}}) [](https://codecov.io/gh/{{{USER}}}/{{{PKG}}}.jl) |
| **Others** | [](https://github.com/invenia/BlueStyle) [](https://github.com/{{{USER}}}/{{{PKG}}}.jl/blob/{{{branch}}}/LICENSE) |
The code, which is [hosted on GitHub](https://github.com/{{{USER}}}/{{{PKG}}}.jl), is tested
using various continuous integration services for its validity.
This repository is created and maintained by
[@singularitti](https://github.com/singularitti), and contributions are highly welcome.
## Package features
## Installation
The package can be installed with the Julia package manager.
From [the Julia REPL](https://docs.julialang.org/en/v1/stdlib/REPL/), type `]` to enter
the [Pkg mode](https://docs.julialang.org/en/v1/stdlib/REPL/#Pkg-mode) and run:
```julia-repl
pkg> add {{{PKG}}}
```
Or, equivalently, via [`Pkg.jl`](https://pkgdocs.julialang.org/v1/):
```julia
julia> import Pkg; Pkg.add("{{{PKG}}}")
```
## Documentation
- [**STABLE**](https://{{{USER}}}.github.io/{{{PKG}}}.jl/stable/) — **documentation of the most recently tagged version.**
- [**DEV**](https://{{{USER}}}.github.io/{{{PKG}}}.jl/dev/) — _documentation of the in-development version._
## Project status
The package is developed for and tested against Julia `v1.6` and above on Linux, macOS, and
Windows.
## Questions and contributions
You can post usage questions on
[our discussion page](https://github.com/{{{USER}}}/{{{PKG}}}.jl/discussions).
We welcome contributions, feature requests, and suggestions. If you encounter any problems,
please open an [issue](https://github.com/{{{USER}}}/{{{PKG}}}.jl/issues).
The [Contributing](@ref) page has
a few guidelines that should be followed when opening pull requests and contributing code.