Skip to content

Commit

Permalink
Fixed requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
mikael-alafriz-deel committed Mar 13, 2021
1 parent 2be6774 commit b28852c
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 19 deletions.
14 changes: 0 additions & 14 deletions requires.txt

This file was deleted.

21 changes: 16 additions & 5 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,24 +2,35 @@

with open("README.md", "r", encoding="utf-8") as fh:
long_description = fh.read()
with open('requires.txt') as f:
required = f.read().splitlines()

setuptools.setup(
name="lucidsonicdreams",
version="0.3",
version="0.4",
author="Alain Mikael Alafriz",
author_email="[email protected]",
description="Syncs GAN-generated visuals to music",
long_description=long_description,
long_description_content_type="text/markdown",
url="https://github.com/mikaelalafriz/lucid-sonic-dreams",
download_url="https://github.com/mikaelalafriz/lucid-sonic-dreams/archive/v_03.tar.gz",
download_url="https://github.com/mikaelalafriz/lucid-sonic-dreams/archive/v_04.tar.gz",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=required
install_requires=['tensorflow==1.15',
'librosa',
'numpy',
'moviepy',
'Pillow',
'tqdm',
'scipy',
'scikit-image',
'pygit2',
'gdown',
'mega.py',
'requests',
'pandas',
'SoundFile']
)

0 comments on commit b28852c

Please sign in to comment.