-
Notifications
You must be signed in to change notification settings - Fork 9
/
setup.py
23 lines (20 loc) · 793 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
from setuptools import setup, find_packages
USERNAME = 'magdalenafuentes'
NAME = 'tutorial'
with open('requirements.txt') as f:
REQUIREMENTS = f.readlines()
setup(
name='common',
version='0.1.0',
description='A Tutorial on Tempo, Beat and Downbeat estimation',
long_description=open('README.md').read().strip(),
long_description_content_type='text/markdown',
author='Matthew E. P. Davies, Sebastian B\:ock, Magdalena Fuentes',
author_email='mgfuenteslujambio@gmail.com',
url='https://github.com/{}/{}'.format(USERNAME, NAME),
packages=find_packages(),
install_requires=open('requirements.txt').readlines(),
extras_require={},
keywords=['audio', 'beat', 'downbeat', 'music', 'tempo', 'ismir', 'tutorial'],
license='CC BY-NC-SA 4.0',
)