aboutsummaryrefslogtreecommitdiff
path: root/setup.py
diff options
context:
space:
mode:
authortassaron2022-04-29 23:19:47 -0400
committertassaron2022-04-29 23:19:47 -0400
commit67c6fa43ac5ed85719179485b0fff4a8ad071a9f (patch)
tree9c51b0ad34fba0a8d14e9ec8f768c82434cc5b01 /setup.py
parentd51d49701e5880e35bbbade72c52bbec18f6e398 (diff)
switch Pillow-SIMD for Pillow
It is easier for people to install with pip. We can always go back to SIMD in the future when we have a better install script. Packaged versions can still use Pillow-SIMD
Diffstat (limited to 'setup.py')
-rw-r--r--setup.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/setup.py b/setup.py
index 5e01229..3709e7b 100644
--- a/setup.py
+++ b/setup.py
@@ -29,7 +29,7 @@ proj_packages = [SOURCE_PACKAGE_REGEX.sub(PACKAGE_NAME, name) for name in source
setup(
name='audio_visualizer_python',
version=avp.__version__,
- url='https://github.com/djfun/audio-visualizer-python/tree/feature-newgui',
+ url='https://github.com/djfun/audio-visualizer-python',
license='MIT',
description=PACKAGE_DESCRIPTION,
author=getTextFromFile('AUTHORS', 'djfun, tassaron'),
@@ -49,7 +49,7 @@ setup(
package_dir={PACKAGE_NAME: SOURCE_DIRECTORY},
include_package_data=True,
install_requires=[
- 'Pillow-SIMD',
+ 'Pillow',
'PyQt5',
'numpy',
'pytest'