12 lines
251 B
Python
12 lines
251 B
Python
|
#!/usr/bin/env python
|
||
|
|
||
|
from distutils.core import setup
|
||
|
|
||
|
setup(name='tsplot',
|
||
|
version='0.1',
|
||
|
description='Simple time series plotting',
|
||
|
author='0xee',
|
||
|
author_email='tsplot@0xee.eu',
|
||
|
packages=[],
|
||
|
scripts=['tsplot'])
|