Browse Source

Initial setup

Brett Langdon 9 years ago
commit
f34def0639
No known key found for this signature in database GPG Key ID: A2ECAB73CE12147F
4 changed files with 22 additions and 0 deletions
  1. +10
    -0
      Makefile
  2. +4
    -0
      README.md
  3. +7
    -0
      cmd/pypihub/main.go
  4. +1
    -0
      server.go

+ 10
- 0
Makefile View File

@ -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

+ 4
- 0
README.md View File

@ -0,0 +1,4 @@
PyPIHub
=======
PyPI server for installing Python packages from GitHub repo releases.

+ 7
- 0
cmd/pypihub/main.go View File

@ -0,0 +1,7 @@
package main
import "fmt"
func main() {
fmt.Println("PyPIHub")
}

+ 1
- 0
server.go View File

@ -0,0 +1 @@
package pypihub

Loading…
Cancel
Save