surfaces/setup.py

14 lines
340 B
Python
Raw Normal View History

2012-03-19 20:50:18 -07:00
from setuptools import setup, find_packages
setup(
name='smbsurf',
2012-03-19 20:50:18 -07:00
description='',
version='0.0',
packages=find_packages(),
install_requires=[],
author="Stephen M. McQuay, William Blattman",
author_email="stephen@mcquay.me, william@blattman.com",
2012-03-19 20:50:18 -07:00
url="https://mcquay.me/hg/research",
license="WTFPL",
)