From f34def06393cafba69c5f27ff2c73e846b8a74bf Mon Sep 17 00:00:00 2001 From: brettlangdon Date: Tue, 20 Dec 2016 10:14:15 -0500 Subject: [PATCH] Initial setup --- Makefile | 10 ++++++++++ README.md | 4 ++++ cmd/pypihub/main.go | 7 +++++++ server.go | 1 + 4 files changed, 22 insertions(+) create mode 100644 Makefile create mode 100644 README.md create mode 100644 cmd/pypihub/main.go create mode 100644 server.go diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..e469143 --- /dev/null +++ b/Makefile @@ -0,0 +1,10 @@ +pypihub: ./*.go + go build -o pypihub ./cmd/pypihub/ + +clean: + rm -f ./pypihub + +run: + go run ./cmd/pypihub/main.go + +.PHONY: clean diff --git a/README.md b/README.md new file mode 100644 index 0000000..40f9134 --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +PyPIHub +======= + +PyPI server for installing Python packages from GitHub repo releases. diff --git a/cmd/pypihub/main.go b/cmd/pypihub/main.go new file mode 100644 index 0000000..3de5f0d --- /dev/null +++ b/cmd/pypihub/main.go @@ -0,0 +1,7 @@ +package main + +import "fmt" + +func main() { + fmt.Println("PyPIHub") +} diff --git a/server.go b/server.go new file mode 100644 index 0000000..4b61034 --- /dev/null +++ b/server.go @@ -0,0 +1 @@ +package pypihub