-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathsetup.py
30 lines (28 loc) · 1.03 KB
/
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
24
25
26
27
28
29
30
from setuptools import setup, find_packages
# Read the contents of requirements.txt
with open('requirements.txt') as f:
requirements = f.read().splitlines()
setup(
name='eswa_difficulty',
version='0.1',
packages=find_packages(),
python_requires='>=3.8',
install_requires=requirements,
author='Pedro Ramoneda',
author_email='[email protected]',
description='Predicting difficulty from musicxml piano scores.',
long_description=open('readme.md').read(),
long_description_content_type='text/markdown',
license='AGPL-3.0',
keywords='predict estimating difficulty musicxml piano scores',
url='https://github.com/pramoneda/difficulty-prediction-CIPI',
package_data={
'eswa_difficulty.piano_fingering': ['models/*.pth'],
'eswa_difficulty': ['eswa_models/*.pth', 'virtuosoNet/*'],
},
classifiers=[
'License :: OSI Approved :: GNU Affero General Public License v3',
'Programming Language :: Python',
'Programming Language :: Python :: 3.10',
],
)