sapling/eden/integration/lib/TARGETS
Adam Simpkins ce0ce6fa4e move eden/fs/cli to eden/cli
Summary:
Move the code for the command-line tool up one directory, out of eden/fs.
This better separates the code so that eden/fs contains code for the edenfs
daemon, while eden/cli contains code for the command line tool.

Reviewed By: bolinfest

Differential Revision: D4888633

fbshipit-source-id: 5041e292c5353d05122eefe5db3257289e31239a
2017-04-14 11:39:01 -07:00

13 lines
212 B
Plaintext

python_library(
name = 'lib',
srcs = glob(['*.py']),
deps = [
'@/eden/cli:lib',
'@/eden/fs/service:py-client',
'@/eden/fs/service:thrift-py',
],
external_deps = [
'py-hypothesis'
],
)