Skip to content

Instantly share code, notes, and snippets.

@dfee
Created August 5, 2018 05:46
Show Gist options
  • Save dfee/96e60c7ebb36c7a163c834b595043684 to your computer and use it in GitHub Desktop.
Save dfee/96e60c7ebb36c7a163c834b595043684 to your computer and use it in GitHub Desktop.
[tool.poetry]
name = "barry.rpc"
version = "2018.0.0"
description = "mypkg rpc module"
authors = ["Devin Fee <dev...>"]
packages = [
{ include = "mypkg" },
]
[tool.poetry.dependencies]
python = "~3.6"
"mypkg.core" = {path = "../mypkg.core"}
grpclib = "^0.1.1"
[tool.poetry]
name = "mypkg.xyz"
version = "2018.0.0"
description = "mypkg xyz module"
authors = ["Devin Fee <dev...>"]
packages = [
{ include = "mypkg" },
]
[tool.poetry.dependencies]
python = "*"
"mypkg.core" = {path = "../mypkg.core"}
"mypkg.rpc" = {path = "../mypkg.rpc"}
[tool.poetry.dev-dependencies]
pytest = "^3.0"
ipython = "^6.5"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment