Add setup.py

master
Sven Slootweg 10 years ago
parent 226132dd48
commit b2083174c6

2
.gitignore vendored

@ -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
/filething.egg-info/
/dist/

@ -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"
)
Loading…
Cancel
Save