File size: 248 Bytes
3af04c7 |
1 2 3 4 5 6 7 8 9 10 11 |
from setuptools import find_packages, setup
setup(
name='src',
packages=find_packages(),
version='0.1.0',
description='Tool demonstrating time series autocorrelation analysis with Python',
author='Author',
license='MIT',
)
|