11 lines
290 B
Python
11 lines
290 B
Python
#!/usr/bin/env python
|
|
|
|
from distutils.core import setup
|
|
|
|
setup(name='Woodwind',
|
|
version='1.0.0',
|
|
description='Stream-style indieweb reader',
|
|
author='Kyle Mahan',
|
|
author_email='kyle@kylewm.com',
|
|
url='https://indieweb.org/Woodwind',
|
|
packages=['woodwind'])
|