Gertie01 commited on
Commit
8a551f6
1 Parent(s): 4919a24

Create setup.py

Browse files
Files changed (1) hide show
  1. setup.py +37 -0
setup.py ADDED
@@ -0,0 +1,37 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ from setuptools import setup, find_packages
2
+
3
+ setup(
4
+ name = 'musiclm-pytorch',
5
+ packages = find_packages(exclude=[]),
6
+ version = '0.0.3',
7
+ license='MIT',
8
+ description = 'MusicLM - AudioLM + Audio CLIP to text to music synthesis',
9
+ author = 'Phil Wang',
10
+ author_email = 'lucidrains@gmail.com',
11
+ long_description_content_type = 'text/markdown',
12
+ url = 'https://github.com/lucidrains/musiclm-pytorch',
13
+ keywords = [
14
+ 'artificial intelligence',
15
+ 'deep learning',
16
+ 'transformers',
17
+ 'attention mechanism',
18
+ 'text to music',
19
+ 'contrastive learning'
20
+ ],
21
+ install_requires=[
22
+ 'audiolm-pytorch',
23
+ 'beartype',
24
+ 'einops>=0.4',
25
+ 'vector-quantize-pytorch>=1.0.0',
26
+ 'x-clip',
27
+ 'torch>=1.6',
28
+ 'torchaudio'
29
+ ],
30
+ classifiers=[
31
+ 'Development Status :: 4 - Beta',
32
+ 'Intended Audience :: Developers',
33
+ 'Topic :: Scientific/Engineering :: Artificial Intelligence',
34
+ 'License :: OSI Approved :: MIT License',
35
+ 'Programming Language :: Python :: 3.6',
36
+ ],
37
+ )