aboutsummaryrefslogtreecommitdiff
path: root/lux-python
diff options
context:
space:
mode:
authorEduardo Julian2022-03-07 04:16:47 -0400
committerEduardo Julian2022-03-07 04:16:47 -0400
commit2ac6926be617bf764c4c18a4f6fbba199f6be697 (patch)
treebf333813ecf54844e039815fc46fd97b125234f8 /lux-python
parenta7fc50b1906fa97fb56d5ebe3d3fff7baee276da (diff)
Compilers for scripting languages now only depend on new JVM compiler.
Diffstat (limited to 'lux-python')
-rw-r--r--lux-python/project.clj30
1 files changed, 0 insertions, 30 deletions
diff --git a/lux-python/project.clj b/lux-python/project.clj
deleted file mode 100644
index 8ceeb90ad..000000000
--- a/lux-python/project.clj
+++ /dev/null
@@ -1,30 +0,0 @@
-(def version "0.6.5")
-(def repo "https://github.com/LuxLang/lux")
-(def sonatype-releases "https://oss.sonatype.org/service/local/staging/deploy/maven2/")
-(def sonatype-snapshots "https://oss.sonatype.org/content/repositories/snapshots/")
-
-(defproject com.github.luxlang/lux-python #=(identity version)
- :description "A Python compiler for Lux."
- :url ~repo
- :license {:name "Lux License v0.1.2"
- :url ~(str repo "/blob/master/license.txt")}
- :scm {:name "git"
- :url ~(str repo ".git")}
- :pom-addition [:developers [:developer
- [:name "Eduardo Julian"]
- [:url "https://github.com/eduardoejp"]]]
-
- :repositories [["snapshots" ~sonatype-snapshots]]
- :deploy-repositories [["releases" {:url ~sonatype-releases :creds :gpg}]
- ["snapshots" {:url ~sonatype-snapshots :creds :gpg}]]
-
- :plugins [[com.github.luxlang/lein-luxc ~version]]
- :dependencies [[com.github.luxlang/lux-bootstrapper ~version]
- ;; [com.github.luxlang/stdlib ~version]
-
- [org.python/jython-standalone "2.7.2"]]
-
- :manifest {"lux" ~version}
- :source-paths ["source"]
- :lux {:program "program"}
- )