Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[bar-charts] Toward. #1

Open
wants to merge 2 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
277 changes: 0 additions & 277 deletions LICENSE

This file was deleted.

10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# tech.viz

Visualizations of data
A Clojure library for visualizing data.

## Usage


See `(commment)` block at the bottom of [./src/tech/viz/vega.clj](./src/tech/viz/vega.clj)

## License

Copyright © 2020 FIXME

This program and the accompanying materials are made available under the
terms of the Eclipse Public License 2.0 which is available at
http://www.eclipse.org/legal/epl-2.0.
Copyright © 2020 TechAscent, LLC
29 changes: 22 additions & 7 deletions project.clj
Original file line number Diff line number Diff line change
@@ -1,10 +1,25 @@
(defproject techascent/tech.viz "0.1-SNAPSHOT"
:description "Visualization library"
:url "http://example.com/FIXME"
:license {:name "EPL-2.0"
:url "https://www.eclipse.org/legal/epl-2.0/"}
:description "A Clojure library for visualizing data."
:url "https://github.com/techascent/tech.viz"
:license {:name "Coypright 2020, TechAscent"
:url "http://techasecent.com"}
:dependencies [[org.clojure/clojure "1.10.1"]
[techascent/tech.datatype "4.72"]
[techascent/tech.io "3.12"]]
[techascent/tech.datatype "4.72"]]
:plugins [[s3-wagon-private "1.3.1"]]
:profiles {:dev {:dependencies [[techascent/tech.ml.dataset "1.68"]]}}
:repl-options {:init-ns tech.viz})
:repl-options {:init-ns tech.viz.vega}
:repositories {"snapshots" {:url "s3p://techascent.jars/snapshots/"
:no-auth true
:releases false}
"releases" {:url "s3p://techascent.jars/releases/"
:no-auth true
:snapshots false
:sign-releases false}}
:release-tasks [["vcs" "assert-committed"]
["change" "version" "leiningen.release/bump-version" "release"]
["vcs" "commit"]
["vcs" "tag" "" "--no-sign"] ;; disable signing
["deploy"]
["change" "version" "leiningen.release/bump-version"]
["vcs" "commit"]
["vcs" "push"]])
Loading