-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
setup.py
29 lines (26 loc) · 808 Bytes
/
setup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import setuptools
with open('README.md', 'r') as readme_file:
long_description = readme_file.read()
setuptools.setup(
name='weird-converter',
version='0.2',
author='AlbertSuarez',
author_email='alsumo95@gmail.com',
description='Strange combinations converter',
long_description=long_description,
long_description_content_type='text/markdown',
url='https://github.com/AlbertSuarez/weird-converter',
license='Apache-2.0',
packages=['weird_converter'],
install_requires=[
'numpy==1.22.0',
'Pillow==9.0.1',
'scipy==1.4.1'
],
zip_safe=False,
classifiers=[
'Programming Language :: Python :: 3',
'Operating System :: OS Independent',
],
keywords='converter audio image audio-to-image image-to-audio',
)