[d869a2]: / setup.py

Download this file

10 lines (9 with data), 327 Bytes

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from setuptools import setup, find_packages
setup(
name='WearSED',
version='1.0.0',
author='Julian BvW',
url='https://github.com/JulianBvW/Wearable-Sleep-Event-Detection',
description='Machine Learning based Detection Model for Sleep Events using Wearable Sensor Modalities',
packages=find_packages()
)