-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathsetup.py
More file actions
18 lines (16 loc) · 711 Bytes
/
setup.py
File metadata and controls
18 lines (16 loc) · 711 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
from setuptools import setup, find_packages
with open('requirements.txt', 'r') as f:
requirements = [line.strip() for line in f if line.strip()]
setup(name='tssb',
version='0.1',
url='https://github.com/ermshaua/time-series-segmentation-benchmark',
license='BSD 3-Clause License',
author='Arik Ermshaus',
description='This repository contains a time series segmentation benchmark.',
packages=find_packages(exclude=['tests', 'examples']),
package_data={'': ['LICENSE']},
include_package_data=True,
install_requires=requirements,
long_description=open('README.md').read(),
long_description_content_type="text/markdown",
zip_safe=False)