8 lines
137 B
Python
8 lines
137 B
Python
|
#!/usr/bin/env python
|
||
|
from setuptools import setup
|
||
|
|
||
|
setup(name="saucebrush",
|
||
|
version='0.1',
|
||
|
packages=['saucebrush'],
|
||
|
)
|