-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Updated lucidrains transformer library versions.
- Loading branch information
vincentbons
committed
Nov 26, 2021
1 parent
2447527
commit c9052f4
Showing
2 changed files
with
8 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,15 @@ | ||
from setuptools import setup, find_namespace_packages | ||
|
||
setup(name='music-generation-toolbox', | ||
version='0.3.0', | ||
version='0.3.1', | ||
description='Toolbox for generating music', | ||
author='Vincent Bons', | ||
url='https://github.com/wingedsheep/music-generation-toolbox', | ||
download_url='https://github.com/wingedsheep/music-generation-toolbox', | ||
license='MIT', | ||
install_requires=['pretty_midi>=0.2.9', 'miditoolkit>=0.1.15', 'scipy>=1.7.1', | ||
'pylab-sdk>=1.3.2', 'requests>=2.26.0', 'matplotlib>=3.4.3', | ||
'reformer-pytorch>=1.4.3', 'x-transformers>=0.20.2', 'torch>=1.10.0', | ||
'numpy~=1.21.3', 'routing_transformer>=1.6.0'], | ||
'reformer-pytorch>=1.4.4', 'x-transformers>=0.20.9', 'torch>=1.10.0', | ||
'numpy~=1.21.3', 'routing_transformer>=1.6.1'], | ||
packages=find_namespace_packages(), | ||
package_data={"": ["*.mid", "*.midi"]}) |