Skip to content

A library to describe Typed Condensed Oriented Directed Acyclic Planar Multigraphs.

Notifications You must be signed in to change notification settings

leobenkel/TypedGraph

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

29 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

TypedGraph

Latest Release


A library to describe Typed Condensed Oriented Directed Acyclic Planar Multigraphs.

For more information, read the white paper.

How to install

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.

Step 1: Install your credentials.

  1. Create a personal access token.
    • You will need only one permission: read:packages.
  2. Save the token in ~/.gitconfig
    • under github.token
    • It should look like:
    [github]
       token = my_token
    
    Alternatively, you can store the token under GITHUB_TOKEN in the environment.

Step 2: Set up your project

  1. Add resolver to build.sbt:
    •  resolvers += "GitHub Package Registry (NikinAI/TypedGraph)" at "https://maven.pkg.github.com/NikinAI/TypedGraph"
  2. 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"))
           },
         ),
  3. Add the library:
    •  libraryDependencies += "ai.nikin" %% "typed-graph" % "<VERSION>",
    • For version, look at : Latest Release

About

A library to describe Typed Condensed Oriented Directed Acyclic Planar Multigraphs.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Scala 100.0%