diff options
author | Brian Waldon <bcwaldon@gmail.com> | 2012-06-01 13:51:26 -0700 |
---|---|---|
committer | Brian Waldon <bcwaldon@gmail.com> | 2012-06-01 13:51:26 -0700 |
commit | cd6467fe76502732dbd98232b138af6ce036652e (patch) | |
tree | 6ecb50fefcaf5004b3845258c193cee095600fc9 | |
download | warlock-cd6467fe76502732dbd98232b138af6ce036652e.tar.gz |
Project bootstrapping
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | setup.py | 13 | ||||
-rw-r--r-- | warlock/__init__.py | 0 |
3 files changed, 14 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..1d17dae --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +.venv diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..c98107e --- /dev/null +++ b/setup.py @@ -0,0 +1,13 @@ +import setuptools + + +setuptools.setup( + name='warlock', + version='0.1', + description='', + author='Brian Waldon', + author_email='bcwaldon@gmail.com', + url='http://github.com/bcwaldon/warlock', + packages=['warlock'], + install_requires=['jsonschema'], +) diff --git a/warlock/__init__.py b/warlock/__init__.py new file mode 100644 index 0000000..e69de29 --- /dev/null +++ b/warlock/__init__.py |