commit f34def06393cafba69c5f27ff2c73e846b8a74bf Author: brettlangdon Date: Tue Dec 20 10:14:15 2016 -0500 Initial setup 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