Archimedes is a Clojure library for working with graphs that conform to the Tinkerpop Blueprints interface.
- Provide an API that makes Tinkerpop Blueprints really easy to use from Clojure
- Be reasonably feature complete
- Don't introduce any significant amount of performance overhead
Archimedes has a mailing list Feel free to join it and ask any questions you may have.
Archimedes artifacts are released to Clojars. If you are using Maven, add the following repository
definition to your pom.xml
:
<repository>
<id>clojars.org</id>
<url>http://clojars.org/repo</url>
</repository>
With Leiningen:
[zmaril/archimedes "1.0.0-alpha2"]
With Maven:
<dependency>
<groupId>zmaril</groupId>
<artifactId>archimedes</artifactId>
<version>1.0.0-alpha2</version>
</dependency>
Archimedes documentation guides are not ready yet.
Our test suite has many code examples.
Archimedes is built from the ground up for Clojure 1.4 and up. The most recent stable release is always recommended.
TBD: add it to travis-ci.org.
Archimedes uses Leiningen 2. Make sure you have it installed and then run tests against supported Clojure versions using
lein2 all test
Then create a branch and make your changes on it. Once you are done with your changes and all tests pass, submit a pull request on Github.
Copyright (C) 2013 Zack Maril
Licensed under the Eclipse Public License (the same as Clojure).