A library to describe Typed Condensed Oriented Directed Acyclic Planar Multigraphs.
For more information, read the white paper.
For convenience, and for the time being, we are using GitHub Packages, which is really not straightforward to use at the moment.
Hopefully, it will get better soon.
- Create a personal access token.
- You will need only one permission:
read:packages
.
- You will need only one permission:
- Save the token in
~/.gitconfig
- under
github.token
- It should look like:
Alternatively, you can store the token under[github] token = my_token
GITHUB_TOKEN
in the environment. - under
- Add resolver to
build.sbt
:-
resolvers += "GitHub Package Registry (NikinAI/TypedGraph)" at "https://maven.pkg.github.com/NikinAI/TypedGraph"
-
- Add credentials:
-
credentials += Credentials( realm = "GitHub Package Registry", host = "maven.pkg.github.com", userName = "_", passwd = { import scala.util.Try import scala.sys.process._ Try(s"git config github.token".!!).map(_.trim).getOrElse(sys.env("GITHUB_TOKEN")) }, ),
-
- Add the library: