summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--.gitignore1
-rw-r--r--setup.py16
2 files changed, 17 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore
index 7ef93c2..0b19fd2 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,2 +1,3 @@
# virtual env
/venv/
+*.egg-info
diff --git a/setup.py b/setup.py
new file mode 100644
index 0000000..3129502
--- /dev/null
+++ b/setup.py
@@ -0,0 +1,16 @@
+from setuptools import setup
+
+setup(
+ name='archivist',
+ version='0.1',
+ py_modules=['archivist'],
+ install_requires=[
+ 'Click',
+ 'sqlalchemy',
+ 'alembic'
+ ],
+ entry_points='''
+ [console_scripts]
+ archivist=archivist.cli:cli
+ ''',
+)