added setup.py file

This commit is contained in:
Stephen M. McQuay 2012-03-19 21:50:18 -06:00
parent 743b516c6d
commit 78aec7fba4
1 changed files with 13 additions and 0 deletions

13
setup.py Normal file
View File

@ -0,0 +1,13 @@
from setuptools import setup, find_packages
setup(
name= 'smbsurf',
description='',
version='0.0',
packages=find_packages(),
install_requires=[],
author="Stephen M. McQuay",
author_email="stephen@mcquay.me",
url="https://mcquay.me/hg/research",
license="WTFPL",
)