Created
August 5, 2018 05:46
-
-
Save dfee/96e60c7ebb36c7a163c834b595043684 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
[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