From 6ccc6575d42838545c4a3c1bb4aaa284123bbe7e Mon Sep 17 00:00:00 2001 From: Chris Pattison Date: Thu, 6 Aug 2020 17:46:01 -0700 Subject: [PATCH] /src layout --- setup.cfg | 7 +++++++ {rmview => src/rmview}/__init__.py | 0 {rmview => src/rmview}/__main__.py | 0 {rmview => src/rmview}/connection.py | 0 {rmview => src/rmview}/rfb.py | 0 {rmview => src/rmview}/rmparams.py | 0 {rmview => src/rmview}/rmview.py | 0 {rmview => src/rmview}/viewer.py | 0 {rmview => src/rmview}/workers.py | 0 9 files changed, 7 insertions(+) create mode 100644 setup.cfg rename {rmview => src/rmview}/__init__.py (100%) rename {rmview => src/rmview}/__main__.py (100%) rename {rmview => src/rmview}/connection.py (100%) rename {rmview => src/rmview}/rfb.py (100%) rename {rmview => src/rmview}/rmparams.py (100%) rename {rmview => src/rmview}/rmview.py (100%) rename {rmview => src/rmview}/viewer.py (100%) rename {rmview => src/rmview}/workers.py (100%) diff --git a/setup.cfg b/setup.cfg new file mode 100644 index 0000000..76abe14 --- /dev/null +++ b/setup.cfg @@ -0,0 +1,7 @@ +[options] +package_dir= + =src +packages=find: + +[options.packages.find] +where=src \ No newline at end of file diff --git a/rmview/__init__.py b/src/rmview/__init__.py similarity index 100% rename from rmview/__init__.py rename to src/rmview/__init__.py diff --git a/rmview/__main__.py b/src/rmview/__main__.py similarity index 100% rename from rmview/__main__.py rename to src/rmview/__main__.py diff --git a/rmview/connection.py b/src/rmview/connection.py similarity index 100% rename from rmview/connection.py rename to src/rmview/connection.py diff --git a/rmview/rfb.py b/src/rmview/rfb.py similarity index 100% rename from rmview/rfb.py rename to src/rmview/rfb.py diff --git a/rmview/rmparams.py b/src/rmview/rmparams.py similarity index 100% rename from rmview/rmparams.py rename to src/rmview/rmparams.py diff --git a/rmview/rmview.py b/src/rmview/rmview.py similarity index 100% rename from rmview/rmview.py rename to src/rmview/rmview.py diff --git a/rmview/viewer.py b/src/rmview/viewer.py similarity index 100% rename from rmview/viewer.py rename to src/rmview/viewer.py diff --git a/rmview/workers.py b/src/rmview/workers.py similarity index 100% rename from rmview/workers.py rename to src/rmview/workers.py