aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Kemmer <tkemmer@computer.org>2021-04-27 18:10:34 +0200
committerThomas Kemmer <tkemmer@computer.org>2021-04-27 18:10:34 +0200
commit6b56d1f2c91b145728afedb22a394bca679b82ed (patch)
tree51455545a2774bfe48a1bdbdad6830a1645d3f64
parent14858da844668605b128794436d4767c5ab55835 (diff)
downloadcachetools-6b56d1f2c91b145728afedb22a394bca679b82ed.tar.gz
Add src directory.
-rw-r--r--setup.cfg6
-rw-r--r--src/cachetools/__init__.py (renamed from cachetools/__init__.py)0
-rw-r--r--src/cachetools/cache.py (renamed from cachetools/cache.py)0
-rw-r--r--src/cachetools/decorators.py (renamed from cachetools/decorators.py)0
-rw-r--r--src/cachetools/fifo.py (renamed from cachetools/fifo.py)0
-rw-r--r--src/cachetools/func.py (renamed from cachetools/func.py)0
-rw-r--r--src/cachetools/keys.py (renamed from cachetools/keys.py)0
-rw-r--r--src/cachetools/lfu.py (renamed from cachetools/lfu.py)0
-rw-r--r--src/cachetools/lru.py (renamed from cachetools/lru.py)0
-rw-r--r--src/cachetools/mru.py (renamed from cachetools/mru.py)0
-rw-r--r--src/cachetools/rr.py (renamed from cachetools/rr.py)0
-rw-r--r--src/cachetools/ttl.py (renamed from cachetools/ttl.py)0
12 files changed, 3 insertions, 3 deletions
diff --git a/setup.cfg b/setup.cfg
index eabb604..9f3f926 100644
--- a/setup.cfg
+++ b/setup.cfg
@@ -24,13 +24,13 @@ classifiers =
Topic :: Software Development :: Libraries :: Python Modules
[options]
+package_dir =
+ = src
packages = find:
python_requires = ~= 3.5
[options.packages.find]
-exclude =
- tests
- tests.*
+where = src
[flake8]
max-line-length = 80
diff --git a/cachetools/__init__.py b/src/cachetools/__init__.py
index 1c925cc..1c925cc 100644
--- a/cachetools/__init__.py
+++ b/src/cachetools/__init__.py
diff --git a/cachetools/cache.py b/src/cachetools/cache.py
index 973d50b..973d50b 100644
--- a/cachetools/cache.py
+++ b/src/cachetools/cache.py
diff --git a/cachetools/decorators.py b/src/cachetools/decorators.py
index 3e78603..3e78603 100644
--- a/cachetools/decorators.py
+++ b/src/cachetools/decorators.py
diff --git a/cachetools/fifo.py b/src/cachetools/fifo.py
index e7c377e..e7c377e 100644
--- a/cachetools/fifo.py
+++ b/src/cachetools/fifo.py
diff --git a/cachetools/func.py b/src/cachetools/func.py
index 57fb72d..57fb72d 100644
--- a/cachetools/func.py
+++ b/src/cachetools/func.py
diff --git a/cachetools/keys.py b/src/cachetools/keys.py
index 13630a4..13630a4 100644
--- a/cachetools/keys.py
+++ b/src/cachetools/keys.py
diff --git a/cachetools/lfu.py b/src/cachetools/lfu.py
index 6289b5c..6289b5c 100644
--- a/cachetools/lfu.py
+++ b/src/cachetools/lfu.py
diff --git a/cachetools/lru.py b/src/cachetools/lru.py
index dbbe787..dbbe787 100644
--- a/cachetools/lru.py
+++ b/src/cachetools/lru.py
diff --git a/cachetools/mru.py b/src/cachetools/mru.py
index 92ec6db..92ec6db 100644
--- a/cachetools/mru.py
+++ b/src/cachetools/mru.py
diff --git a/cachetools/rr.py b/src/cachetools/rr.py
index 561dbe5..561dbe5 100644
--- a/cachetools/rr.py
+++ b/src/cachetools/rr.py
diff --git a/cachetools/ttl.py b/src/cachetools/ttl.py
index eef8877..eef8877 100644
--- a/cachetools/ttl.py
+++ b/src/cachetools/ttl.py