From b2083174c6126c20b26cda9fb29437bb6afbe230 Mon Sep 17 00:00:00 2001 From: Sven Slootweg Date: Wed, 21 May 2014 10:22:28 +0200 Subject: [PATCH] Add setup.py --- .gitignore | 4 +++- setup.py | 12 ++++++++++++ 2 files changed, 15 insertions(+), 1 deletion(-) create mode 100644 setup.py diff --git a/.gitignore b/.gitignore index f86fa8e..5916440 100644 --- a/.gitignore +++ b/.gitignore @@ -1,3 +1,5 @@ # https://git-scm.com/docs/gitignore # https://help.github.com/articles/ignoring-files -# Example .gitignore files: https://github.com/github/gitignore \ No newline at end of file +# Example .gitignore files: https://github.com/github/gitignore +/filething.egg-info/ +/dist/ diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..97fa785 --- /dev/null +++ b/setup.py @@ -0,0 +1,12 @@ +from setuptools import setup + +setup(name='filething', + version='1.0.0', + description='A thin light-weight wrapper library, to make filesystem operations in Python suck less.', + author='Sven Slootweg', + author_email='filething@cryto.net', + url='https://github.com/joepie91/filething', + packages=['filething'], + provides=['filething'], + license="WTFPL" + )