Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update setup.py #1

Merged
merged 15 commits into from
Feb 5, 2023
Binary file added lucid-sonic-dreams.tar.gz
Binary file not shown.
2 changes: 1 addition & 1 deletion lucidsonicdreams/main.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@

# Clone Official StyleGAN2-ADA Repository
if not os.path.exists('stylegan2'):
pygit2.clone_repository('https://github.com/NVlabs/stylegan2-ada.git',
pygit2.clone_repository('https://github.com/NVlabs/stylegan2-ada-pytorch',
'stylegan2')

#StyleGAN2 Imports
Expand Down
30 changes: 12 additions & 18 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,32 +5,26 @@

setuptools.setup(
name="lucidsonicdreams",
version="0.4",
author="Alain Mikael Alafriz",
author_email="mikaelalafriz@gmail.com",
version="0.01",
author="BigZaddy",
author_email="@gmail.com",
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_04.tar.gz",
# url="https://github.com/takerdao2/lucid-sonic-dreams",
# download_url="https://github.com/takertao2/lucid-sonic-dreams/lucid-sonic-dreams.tar.gz",
packages=setuptools.find_packages(),
classifiers=[
"Programming Language :: Python :: 3",
"License :: OSI Approved :: MIT License",
"Operating System :: OS Independent",
],
install_requires=['tensorflow==1.15',
'librosa',
'numpy',
'moviepy',
'Pillow',
'tqdm',
'scipy',
'scikit-image',
'pygit2',
'gdown',
'mega.py',
install_requires=['click',
'moviepy==0.2.3.5',
'requests',
'pandas',
'SoundFile']
'tqdm',
'ninja',
'imageio==2.4.1',
'imageio-ffmpeg==0.4.3',
'pyspng==0.1.0']
)