summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--README4
l---------[-rw-r--r--]README.md5
-rw-r--r--requirements.txt1
-rwxr-xr-xsetup.py2
5 files changed, 8 insertions, 5 deletions
diff --git a/.gitignore b/.gitignore
index 7c02a72..d489600 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,3 +3,4 @@ dist/
*.pyc
*.pyo
cscope.out
+MANIFEST
diff --git a/README b/README
new file mode 100644
index 0000000..f3f8c29
--- /dev/null
+++ b/README
@@ -0,0 +1,4 @@
+Custodia
+========
+
+A service to manage, retrieve and store secrets for other processes.
diff --git a/README.md b/README.md
index f3f8c29..100b938 100644..120000
--- a/README.md
+++ b/README.md
@@ -1,4 +1 @@
-Custodia
-========
-
-A service to manage, retrieve and store secrets for other processes.
+README \ No newline at end of file
diff --git a/requirements.txt b/requirements.txt
index 3e7b26e..3687329 100644
--- a/requirements.txt
+++ b/requirements.txt
@@ -1 +1,2 @@
jwcrypto
+six
diff --git a/setup.py b/setup.py
index d46b7ff..01c0b5f 100755
--- a/setup.py
+++ b/setup.py
@@ -13,7 +13,7 @@ setup(
url='https://github.com/simo5/custodia',
packages = ['custodia', 'custodia.httpd', 'custodia.store'],
data_files = [('share/man/man7', ["man/custodia.7"]),
- ('share/doc/custodia', ['COPYING', 'README']),
+ ('share/doc/custodia', ['LICENSE', 'README']),
('share/doc/custodia/examples', ['custodia.conf']),
],
scripts = ['custodia/custodia']