diff options
author | Teddy Wing | 2014-04-20 00:22:05 -0400 |
---|---|---|
committer | Teddy Wing | 2014-04-20 00:22:05 -0400 |
commit | 4364b952701b6ce3883094676ea9d8d93757cbde (patch) | |
tree | e22441cc125d8bea1e36dd77d83b9ae5b20493e2 /setup.py | |
parent | 75fa16196e8b304d4c35581850bba8311f5dd1ed (diff) | |
download | django-sneak-peek-4364b952701b6ce3883094676ea9d8d93757cbde.tar.bz2 |
Add bare setup.py
Just the essentials so that I can install my package. Will fill in the
rest of the information later.
Diffstat (limited to 'setup.py')
-rw-r--r-- | setup.py | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..520b4fb --- /dev/null +++ b/setup.py @@ -0,0 +1,18 @@ +import os + +from setuptools import setup, find_packages + + +setup( + name='django-sneak-peek', + version='0.0.1', + description='', + long_description='', + url='', + license='MIT', + author='Teddy Wing', + author_email='', + include_package_data=True, + packages=find_packages(), + classifiers=[], +)
\ No newline at end of file |